blob: 732bcaa9edaef12617ca4be6fa7ff29e35dffa37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# .bash_profile
# Get the aliases and functions.
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
# Set environment variables.
mkdir /tmp/$USER-runtime
chmod 700 /tmp/$USER-runtime
export XDG_RUNTIME_DIR="/tmp/$USER-runtime"
export EDITOR="nvim"
export TERMINAL="st"
export BROWSER="firefox"
export READER="zathura"
startx
|