xinitrc/.xinitrc

85 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 eDP1 --auto --output HDMI1 --right-of eDP1
# 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") eDP1
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 ) j4-make-config -a $(hostname).config archlinux # Create config
exec i3;;
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