dotfiles/.zprofile

19 lines
390 B
Text
Raw Normal View History

2020-09-28 09:15:11 +03:00
export PATH=$PATH:$HOME/.local/bin
2020-08-01 15:05:15 +03:00
# Default programs:
2020-08-22 19:04:56 +03:00
export EDITOR="nvim"
export TERMINAL="st"
export BROWSER="librewolf"
export BROWSER2="chromium"
2020-09-28 09:15:11 +03:00
export READER="xreader"
export FILEMANAGER="pcmanfm-qt"
#export QT_STYLE_OVERRIDE=kvantum
export QT_QPA_PLATFORMTHEME=qt5ct
#export DESKTOP_SESSION=KDE
2022-09-20 19:21:41 +03:00
# If running from tty1 start sway
2023-02-27 11:56:50 +02:00
if [ "$(tty)" = "/dev/tty1" ]; then
startsway
fi