mine-hyprdots/.config/X11/xinitrc.sh

17 lines
245 B
Bash
Raw Normal View History

2024-09-15 12:27:24 +05:30
#!/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