2018-07-29 16:35:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Profile file. Runs on login.
|
|
|
|
|
2018-11-05 22:51:24 +00:00
|
|
|
export PATH="$(du $HOME/.scripts/ | cut -f2 | tr '\n' ':')$PATH"
|
2018-07-29 16:35:01 +00:00
|
|
|
export EDITOR="vim"
|
|
|
|
export TERMINAL="st"
|
2018-09-16 00:33:02 +00:00
|
|
|
export BROWSER="linkhandler"
|
|
|
|
export TRUEBROWSER="firefox"
|
2018-07-29 16:35:01 +00:00
|
|
|
export READER="zathura"
|
|
|
|
export BIB="$HOME/Documents/LaTeX/uni.bib"
|
2018-11-01 02:07:48 +00:00
|
|
|
export REFER="$HOME/.referbib"
|
2018-07-29 16:35:01 +00:00
|
|
|
|
2018-11-16 17:25:06 +00:00
|
|
|
[ ! -f ~/.shortcuts ] && shortcuts >/dev/null 2>&1
|
2018-08-01 05:03:31 +00:00
|
|
|
|
2018-09-16 00:33:02 +00:00
|
|
|
[ -f ~/.bashrc ] && source ~/.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-09-16 00:33:02 +00:00
|
|
|
if [ "$(tty)" = "/dev/tty1" ]; then
|
2018-07-29 16:35:01 +00:00
|
|
|
pgrep -x i3 || exec startx
|
|
|
|
fi
|
2018-08-27 16:50:31 +00:00
|
|
|
|
|
|
|
# Switch escape and caps and use wal colors if tty:
|
|
|
|
sudo -n loadkeys ~/.scripts/ttymaps.kmap 2>/dev/null
|
2018-11-01 02:07:48 +00:00
|
|
|
tty | grep tty >/dev/null && wal -Rns
|