diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-05-27 13:40:47 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-05-27 13:40:47 -0400 |
| commit | e1ccd14331d66168937f5e6c03c204aa85c73af6 (patch) | |
| tree | 37f7cb5c248153079c51417c957cba284e6b5fd1 /.profile | |
| parent | 4ceb73dc53bd3b1bca5530b42492ca0c3f5fbf65 (diff) | |
| download | eibhear-e1ccd14331d66168937f5e6c03c204aa85c73af6.tar.gz eibhear-e1ccd14331d66168937f5e6c03c204aa85c73af6.tar.zst eibhear-e1ccd14331d66168937f5e6c03c204aa85c73af6.zip | |
profile cleanup
Diffstat (limited to '.profile')
| -rw-r--r-- | .profile | 33 |
1 files changed, 20 insertions, 13 deletions
@@ -1,35 +1,42 @@ #!/bin/sh -# Profile file. Runs on login. -# Adds `~/.scripts` and all subdirectories to $PATH +# Profile file. Runs on login. Environmental variables are set here. + +# Adds `~/.local/bin` and all subdirectories to $PATH export PATH="$PATH:$HOME/.local/bin/" + +# Default programs: export EDITOR="nvim" export TERMINAL="st" export BROWSER="tabbed -r 2 surf -e lmao" export READER="zathura" -export FILE="vifm" -export SUDO_ASKPASS="$HOME/.local/bin/dmenupass" +export FILE="lf" + +# ~/ Clean-up: export NOTMUCH_CONFIG="$HOME/.config/notmuch-config" export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0" export LESSHISTFILE="-" export INPUTRC="$HOME/.config/inputrc" +export ZDOTDIR="$HOME/.config/zsh" +export PASSWORD_STORE_DIR="$HOME/.local/share/password-store" -# less/man colors +# Other program settings: +export SUDO_ASKPASS="$HOME/.local/bin/tools/dmenupass" export LESS=-R -export LESS_TERMCAP_mb="$(printf '%b' '[1;31m')"; a="${a%_}" -export LESS_TERMCAP_md="$(printf '%b' '[1;36m')"; a="${a%_}" -export LESS_TERMCAP_me="$(printf '%b' '[0m')"; a="${a%_}" -export LESS_TERMCAP_so="$(printf '%b' '[01;44;33m')"; a="${a%_}" -export LESS_TERMCAP_se="$(printf '%b' '[0m')"; a="${a%_}" -export LESS_TERMCAP_us="$(printf '%b' '[1;32m')"; a="${a%_}" -export LESS_TERMCAP_ue="$(printf '%b' '[0m')"; a="${a%_}" +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 echo "$0" | grep "bash$" >/dev/null && [ -f ~/.bashrc ] && source "$HOME/.bashrc" # Start graphical server if i3 not already running. -[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x i3 >/dev/null && exec startx +[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x Xorg >/dev/null && exec startx # Switch escape and caps if tty: sudo -n loadkeys ~/.local/share/larbs/ttymaps.kmap 2>/dev/null |
