2019-02-08 01:57:43 +00:00
|
|
|
|
#!/bin/sh
|
2018-07-29 16:35:01 +00:00
|
|
|
|
# Profile file. Runs on login.
|
|
|
|
|
|
2018-11-26 19:17:18 +00:00
|
|
|
|
# Adds `~/.scripts` and all subdirectories to $PATH
|
2019-02-03 11:37:56 +00:00
|
|
|
|
export PATH="$PATH:$(du "$HOME/.scripts/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
|
2019-01-13 23:45:33 +00:00
|
|
|
|
export EDITOR="nvim"
|
2018-07-29 16:35:01 +00:00
|
|
|
|
export TERMINAL="st"
|
2018-12-05 02:32:17 +00:00
|
|
|
|
export BROWSER="firefox"
|
2018-07-29 16:35:01 +00:00
|
|
|
|
export READER="zathura"
|
2019-01-05 04:14:03 +00:00
|
|
|
|
export FILE="ranger"
|
2018-07-29 16:35:01 +00:00
|
|
|
|
export BIB="$HOME/Documents/LaTeX/uni.bib"
|
2019-02-19 18:56:15 +00:00
|
|
|
|
export REFER="$HOME/Documents/referbib"
|
2018-12-16 19:34:02 +00:00
|
|
|
|
export SUDO_ASKPASS="$HOME/.scripts/tools/dmenupass"
|
2019-02-19 18:56:15 +00:00
|
|
|
|
export NOTMUCH_CONFIG="$HOME/.config/notmuch-config"
|
|
|
|
|
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
|
|
|
|
|
export PIX="$HOME/.config/pix/"
|
2018-07-29 16:35:01 +00:00
|
|
|
|
|
2018-12-01 22:47:43 +00:00
|
|
|
|
# less/man colors
|
|
|
|
|
export LESS=-R
|
2019-02-08 01:57:43 +00:00
|
|
|
|
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%_}"
|
2018-12-01 22:47:43 +00:00
|
|
|
|
|
2019-02-19 18:54:58 +00:00
|
|
|
|
[ ! -f ~/.config/shortcutrc ] && shortcuts >/dev/null 2>&1
|
2018-08-01 05:03:31 +00:00
|
|
|
|
|
2018-12-30 23:41:34 +00:00
|
|
|
|
echo "$0" | grep "bash$" >/dev/null && [ -f ~/.bashrc ] && source "$HOME/.bashrc"
|
2018-07-31 19:34:17 +00:00
|
|
|
|
|
2018-07-29 16:35:01 +00:00
|
|
|
|
# Start graphical server if i3 not already running.
|
2018-12-06 00:23:27 +00:00
|
|
|
|
[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x i3 >/dev/null && exec startx
|
2018-08-27 16:50:31 +00:00
|
|
|
|
|
2018-12-30 23:41:34 +00:00
|
|
|
|
# Switch escape and caps if tty:
|
2018-08-27 16:50:31 +00:00
|
|
|
|
sudo -n loadkeys ~/.scripts/ttymaps.kmap 2>/dev/null
|