home/.xinitrc

24 lines
340 B
Text
Raw Normal View History

2024-09-02 00:44:33 +02:00
#!/bin/sh
source /home/hanez/.env
/home/hanez/.screenlayout/default.sh
if [[ "$1" == "xterm" ]]; then
shift
fi
case $1 in
awesome)
exec dbus-launch awesome
;;
qtile)
while true; do
exec dbus-launch qtile start
done
;;
*)
exec dbus-launch $DEFAULT_SESSION
;;
esac