79 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
userresources=$HOME/.Xresources
 | 
						|
usermodmap=$HOME/.Xmodmap
 | 
						|
sysresources=/etc/X11/xinit/.Xresources
 | 
						|
sysmodmap=/etc/X11/xinit/.Xmodmap
 | 
						|
 | 
						|
# merge in defaults and keymaps
 | 
						|
 | 
						|
[ -f $sysresources ] && xrdb -merge $sysresources
 | 
						|
[ -f $sysmodmap ] && xmodmap $sysmodmap
 | 
						|
[ -f "$userresources" ] && xrdb -merge "$userresources"
 | 
						|
[ -f "$usermodmap" ] && xmodmap "$usermodmap"
 | 
						|
 | 
						|
 | 
						|
# 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
 | 
						|
 | 
						|
 | 
						|
#== Thurstylark additions below ==#
 | 
						|
 | 
						|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
 | 
						|
export SSH_AUTH_SOCK
 | 
						|
 | 
						|
# Automatically lock after 30 minutes using slock
 | 
						|
xautolock -time 30 -locker 'i3lock -b -d -c 000000 -e -f' &
 | 
						|
 | 
						|
# Thurstybook-specific config:
 | 
						|
[ "$(hostname)" == "thurstybook" ] && srandrd ~/.config/srandrd.conf
 | 
						|
 | 
						|
 | 
						|
[ "$(hostname)" == "dtarch" ] && {
 | 
						|
	# Set VGA1 to be right of HDMI1
 | 
						|
	xrandr --output HDMI1 --primary --mode 1920x1080 --pos 0x0 --output VGA1 --mode 1680x1050 --pos 1920x0
 | 
						|
	# Set the bell to be different from Matt's 
 | 
						|
	xset b 75 750 50
 | 
						|
}
 | 
						|
 | 
						|
# If numlockx is installed, activate it
 | 
						|
[ -s /usr/bin/numlockx ] && numlockx on
 | 
						|
 | 
						|
 | 
						|
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;;
 | 
						|
	i3|i3wm           ) exec i3 -c ~/.config/i3/$(hostname).config;;
 | 
						|
	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
 | 
						|
 | 
						|
 | 
						|
 |