home/.xinitrc

26 lines
396 B
Text
Raw Normal View History

#!/bin/bash
2024-09-02 00:44:33 +02:00
. /home/hanez/.env
2024-09-02 02:06:41 +02:00
# Export DEFAULT_SESSION in this file:
. /home/hanez/.penv
2024-09-02 00:44:33 +02:00
/home/hanez/.screenlayout/default.sh
2024-09-02 00:44:33 +02:00
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