conf2/zsh/.zprofile

13 lines
334 B
Plaintext
Raw Normal View History

2018-06-13 19:38:45 +00:00
if [ -d "$HOME/.local/bin" ]; then
export PATH="$HOME/.local/bin:$PATH"
fi
if [ -f "/bin/Xorg" ]; then
2024-10-23 17:23:20 +00:00
[[ $(tty) == '/dev/tty2' ]] && startx ~/.xinitrc awesome
2018-11-12 17:26:58 +00:00
[[ $(tty) == '/dev/tty3' ]] && startx ~/.xinitrc i3
2018-06-13 19:38:45 +00:00
fi
2024-10-23 17:23:20 +00:00
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]] ; then
XDG_SESSION_TYPE=wayland exec Hyprland
2018-06-13 19:38:45 +00:00
fi