2016-04-28 15:30:04 +00:00
|
|
|
#!/bin/bash
|
2016-01-20 18:28:26 +00:00
|
|
|
|
|
|
|
userresources=$HOME/.Xresources
|
|
|
|
usermodmap=$HOME/.Xmodmap
|
|
|
|
sysresources=/etc/X11/xinit/.Xresources
|
|
|
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
|
|
|
|
|
|
|
# merge in defaults and keymaps
|
|
|
|
|
2016-04-11 17:25:45 +00:00
|
|
|
[ -f $sysresources ] && xrdb -merge $sysresources
|
|
|
|
[ -f $sysmodmap ] && xmodmap $sysmodmap
|
|
|
|
[ -f "$userresources" ] && xrdb -merge "$userresources"
|
|
|
|
[ -f "$usermodmap" ] && xmodmap "$usermodmap"
|
|
|
|
|
2016-01-20 18:28:26 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
2016-01-25 16:28:12 +00:00
|
|
|
#== Thurstylark additions below ==#
|
|
|
|
|
2016-10-18 14:01:06 +00:00
|
|
|
# Start ssh agent
|
|
|
|
eval $(ssh-agent)
|
2016-10-12 15:06:25 +00:00
|
|
|
|
2016-10-18 14:01:06 +00:00
|
|
|
# Automatically lock after 30 minutes using i3lock
|
2016-04-18 16:42:01 +00:00
|
|
|
xautolock -time 30 -locker 'i3lock -b -d -c 000000 -e -f' &
|
2016-01-20 18:28:26 +00:00
|
|
|
|
2016-03-23 23:24:32 +00:00
|
|
|
# Thurstybook-specific config:
|
2016-04-28 15:30:04 +00:00
|
|
|
[ "$(hostname)" == "thurstybook" ] && srandrd ~/.config/srandrd.conf
|
2016-03-23 23:24:32 +00:00
|
|
|
|
2016-10-18 14:01:06 +00:00
|
|
|
# dtarchaio-specific config:
|
2016-05-10 19:18:13 +00:00
|
|
|
if [ "$(hostname)" == "dtarchaio" ]; then
|
|
|
|
# Set HDMI1 to be right of eDP1
|
2016-12-20 18:26:17 +00:00
|
|
|
xrandr --output eDP1 --auto --output HDMI1 --right-of eDP1
|
2016-01-20 18:28:26 +00:00
|
|
|
# Set the bell to be different from Matt's
|
|
|
|
xset b 75 750 50
|
2016-05-10 19:18:13 +00:00
|
|
|
# Set Touchscreen to only work on main display
|
2016-12-20 18:26:17 +00:00
|
|
|
xinput --map-to-output $(xinput list --id-only "Advanced Silicon S.A CoolTouch(TM) System") eDP1
|
2016-05-10 19:18:13 +00:00
|
|
|
fi
|
2016-01-25 16:28:12 +00:00
|
|
|
|
2016-10-18 14:01:06 +00:00
|
|
|
# If numlockx is installed, turn numlock on
|
2016-04-28 15:30:04 +00:00
|
|
|
[ -s /usr/bin/numlockx ] && numlockx on
|
2016-04-11 17:25:45 +00:00
|
|
|
|
2016-08-05 17:12:22 +00:00
|
|
|
# Set termite up to launch tmux on $mod+Enter in i3
|
2016-10-24 20:51:27 +00:00
|
|
|
export TERMINAL=~/.config/i3/launch-st.sh
|
2016-08-05 17:12:22 +00:00
|
|
|
|
2016-10-18 14:01:06 +00:00
|
|
|
# If $1 isn't set, use "i3"
|
2016-01-20 18:28:26 +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-12-20 18:26:17 +00:00
|
|
|
i3|i3wm ) j4-make-config -a $(hostname).config archlinux # Create config
|
|
|
|
exec i3;;
|
2016-01-20 18:28:26 +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
|
|
|
|
|
|
|
|
|
|
|
|
|