conf2/zsh/.zprofile
2024-10-23 19:29:52 +02:00

13 lines
334 B
Bash
Executable File

if [ -d "$HOME/.local/bin" ]; then
export PATH="$HOME/.local/bin:$PATH"
fi
if [ -f "/bin/Xorg" ]; then
[[ $(tty) == '/dev/tty2' ]] && startx ~/.xinitrc awesome
[[ $(tty) == '/dev/tty3' ]] && startx ~/.xinitrc i3
fi
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]] ; then
XDG_SESSION_TYPE=wayland exec Hyprland
fi