84 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.3 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 ==#
 | 
						|
 | 
						|
# Start ssh agent
 | 
						|
eval $(ssh-agent)
 | 
						|
 | 
						|
# Automatically lock after 30 minutes using i3lock
 | 
						|
xautolock -time 30 -locker 'i3lock -b -d -c 000000 -e -f' &
 | 
						|
 | 
						|
# Thurstybook-specific config:
 | 
						|
[ "$(hostname)" == "thurstybook" ] && srandrd ~/.config/srandrd.conf
 | 
						|
 | 
						|
# dtarchaio-specific config:
 | 
						|
if [ "$(hostname)" == "dtarchaio" ]; then
 | 
						|
	# Set HDMI1 to be right of eDP1
 | 
						|
	xrandr --output eDP-1 --auto --output HDMI-1 --right-of eDP-1
 | 
						|
	# Set the bell to be different from Matt's 
 | 
						|
	xset b 75 750 50
 | 
						|
	# Set Touchscreen to only work on main display
 | 
						|
	xinput --map-to-output $(xinput list --id-only "Advanced Silicon S.A CoolTouch(TM) System") eDP-1
 | 
						|
fi
 | 
						|
 | 
						|
# If numlockx is installed, turn numlock on
 | 
						|
[ -s /usr/bin/numlockx ] && numlockx on
 | 
						|
 | 
						|
# Set termite up to launch tmux on $mod+Enter in i3
 | 
						|
export TERMINAL=~/.config/i3/launch-st.sh
 | 
						|
 | 
						|
# If $1 isn't set, use "i3"
 | 
						|
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
 | 
						|
 | 
						|
 | 
						|
 |