49 lines
1.8 KiB
Bash
49 lines
1.8 KiB
Bash
# Profile file. Runs on login. Environmental variables are set here.
|
||
|
||
# Adds `~/.local/bin` to $PATH
|
||
export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
|
||
|
||
# Get default LARBS WM from $XDG_DATA_HOME/larbs/wm
|
||
export LARBSWM="$(cat $XDG_DATA_HOME/larbs/wm 2>/dev/null)" &&
|
||
[ "$LARBSWM" = "dwm" ] || export LARBSWM="i3"
|
||
|
||
# Default programs:
|
||
export EDITOR="nvim"
|
||
export TERMINAL="st"
|
||
export BROWSER="brave"
|
||
export READER="zathura"
|
||
export STATUSBAR="${LARBSWM}blocks"
|
||
|
||
# ~/ Clean-up:
|
||
#export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" # This line will break some DMs.
|
||
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch-config"
|
||
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc-2.0"
|
||
export LESSHISTFILE="-"
|
||
export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc"
|
||
export INPUTRC="$XDG_CONFIG_HOME/inputrc"
|
||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||
export PASSWORD_STORE_DIR="$XDG_DATA_HOME/password-store"
|
||
export TMUX_TMPDIR="$XDG_RUNTIME_DIR"
|
||
export ANDROID_SDK_HOME="$XDG_CONFIG_HOME/android"
|
||
export CARGO_HOME="$XDG_DATA_HOME/cargo"
|
||
|
||
# Other program settings:
|
||
export DICS="/usr/share/stardict/dic/"
|
||
export SUDO_ASKPASS="$HOME/.local/bin/dmenupass"
|
||
export FZF_DEFAULT_OPTS="--layout=reverse --height 40%"
|
||
export LESS=-R
|
||
export LESS_TERMCAP_mb="$(printf '%b' '[1;31m')"
|
||
export LESS_TERMCAP_md="$(printf '%b' '[1;36m')"
|
||
export LESS_TERMCAP_me="$(printf '%b' '[0m')"
|
||
export LESS_TERMCAP_so="$(printf '%b' '[01;44;33m')"
|
||
export LESS_TERMCAP_se="$(printf '%b' '[0m')"
|
||
export LESS_TERMCAP_us="$(printf '%b' '[1;32m')"
|
||
export LESS_TERMCAP_ue="$(printf '%b' '[0m')"
|
||
|
||
[ ! -f ~/.config/shortcutrc ] && shortcuts >/dev/null 2>&1
|
||
|
||
# Start graphical server on tty1 if not already running.
|
||
[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x Xorg >/dev/null && exec startx
|
||
|
||
# Switch escape and caps if tty and no passwd required:
|
||
sudo -n loadkeys $XDG_DATA_HOME/larbs/ttymaps.kmap 2>/dev/null
|