dotfiles/xinitrc
Geoffrey Frogeye 1471257fd1 Initial commit
This will probably the only commit with an intelligible description.
2015-07-12 17:50:37 +02:00

18 lines
279 B
Plaintext

#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
#
export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
DEFAULT_SESSION=i3
case $1 in
xfce) exec dbus-launch xfce4-session ;;
i3) exec dbus-launch i3 ;;
*) exec dbus-launch $DEFAULT_SESSION ;;
esac