2016-01-20 16:52:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
userresources=$HOME/.Xresources
|
|
|
|
usermodmap=$HOME/.Xmodmap
|
|
|
|
sysresources=/etc/X11/xinit/.Xresources
|
|
|
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
|
|
|
|
|
|
|
# merge in defaults and keymaps
|
|
|
|
|
|
|
|
if [ -f $sysresources ]; then
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xrdb -merge $sysresources
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $sysmodmap ]; then
|
|
|
|
xmodmap $sysmodmap
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$userresources" ]; then
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xrdb -merge "$userresources"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$usermodmap" ]; then
|
|
|
|
xmodmap "$usermodmap"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# start some nice programs
|
|
|
|
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
|
|
|
unset f
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
|
|
|
export SSH_AUTH_SOCK
|
|
|
|
|
2016-01-20 21:41:31 +00:00
|
|
|
# Automatically lock after 30 minutes using slock
|
2016-01-20 16:52:38 +00:00
|
|
|
xautolock -time 30 -locker slock &
|
|
|
|
|
2016-01-20 21:41:31 +00:00
|
|
|
if [[ "$HOSTNAME" == "dtarch" ]]; then
|
|
|
|
# Set VGA1 to be right of HDMI1
|
|
|
|
xrandr --output VGA1 --auto --right-of HDMI1
|
|
|
|
|
|
|
|
# Set the bell to be different from Matt's
|
|
|
|
xset b 75 750 50
|
|
|
|
fi
|
2016-01-20 16:52:38 +00:00
|
|
|
session=${1:-i3}
|
|
|
|
|
|
|
|
case $session in
|
|
|
|
awesome ) exec awesome;;
|
|
|
|
bspwm ) exec bspwm;;
|
|
|
|
catwm ) exec catwm;;
|
|
|
|
cinnamon ) exec cinnamon-session;;
|
|
|
|
dwm ) exec dwm;;
|
|
|
|
enlightenment ) exec enlightenment_start;;
|
|
|
|
ede ) exec startede;;
|
|
|
|
fluxbox ) exec startfluxbox;;
|
|
|
|
gnome ) exec gnome-session;;
|
|
|
|
gnome-classic ) exec gnome-session --session=gnome-classic;;
|
2016-01-20 21:41:31 +00:00
|
|
|
i3|i3wm ) exec i3 -c ~/.config/i3/$HOSTNAME.config;;
|
2016-01-20 16:52:38 +00:00
|
|
|
icewm ) exec icewm-session;;
|
|
|
|
jwm ) exec jwm;;
|
|
|
|
kde ) exec startkde;;
|
|
|
|
mate ) exec mate-session;;
|
|
|
|
monster|monsterwm ) exec monsterwm;;
|
|
|
|
notion ) exec notion;;
|
|
|
|
openbox ) exec openbox-session;;
|
|
|
|
unity ) exec unity;;
|
|
|
|
xfce|xfce4 ) exec startxfce4;;
|
|
|
|
xmonad ) exec xmonad;;
|
|
|
|
# No known session, try to run it as command
|
|
|
|
*) exec $1;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
|