dotfiles/xinitrc

20 lines
340 B
Bash

#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
#
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
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