18 lines
394 B
Bash
18 lines
394 B
Bash
export PATH=$PATH:$HOME/.local/bin
|
|
|
|
# Default programs:
|
|
export EDITOR="nvim"
|
|
export TERMINAL="foot"
|
|
export BROWSER="firefox-bin"
|
|
export BROWSER2="chromium"
|
|
export READER="xreader"
|
|
export FILEMANAGER="pcmanfm-qt"
|
|
|
|
#export QT_STYLE_OVERRIDE=kvantum
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
#export DESKTOP_SESSION=KDE
|
|
|
|
# If running from tty1 start sway
|
|
if [ "$(tty)" = "/dev/tty1" ]; then
|
|
startsway
|
|
fi
|