mine-hyprdots/.config/X11/xinitrc.sh
2024-09-15 12:27:24 +05:30

16 lines
245 B
Bash

#!/bin/sh
if [ -f "$XDG_CONFIG_HOME/.config/x11/xprofile" ]; then
. "$XDG_CONFIG_HOME/.config/x11/xprofile"
else
. "$HOME/.xprofile"
fi
# . "$HOME/.profile"
fav=bspwm
case "$1" in
bspwm) bspwm ;;
xfce) startxfce4 ;;
*) exec $fav ;;
esac