voidrice/.profile

34 lines
1.2 KiB
Text
Raw Normal View History

2018-07-29 16:35:01 +00:00
#!/bin/sh
# Profile file. Runs on login.
2018-11-26 19:17:18 +00:00
# Adds `~/.scripts` and all subdirectories to $PATH
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-12-05 02:32:17 +00:00
export BROWSER="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-11-26 19:17:18 +00:00
# PIX is here I have LARBS keep icons. Subject to change, hence a variable.
export PIX="$HOME/.scripts/pix"
2018-07-29 16:35:01 +00:00
# less/man colors
export LESS=-R
export LESS_TERMCAP_mb=$'\E[1;31m' # begin bold
export LESS_TERMCAP_md=$'\E[1;36m' # begin blink
export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
export LESS_TERMCAP_so=$'\E[01;44;33m' # begin reverse video
export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
export LESS_TERMCAP_ue=$'\E[0m' # reset underline
2018-11-16 17:25:06 +00:00
[ ! -f ~/.shortcuts ] && shortcuts >/dev/null 2>&1
2018-09-16 00:33:02 +00:00
[ -f ~/.bashrc ] && source ~/.bashrc
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
# Switch escape and caps and use wal colors if tty:
sudo -n loadkeys ~/.scripts/ttymaps.kmap 2>/dev/null