2017-10-16 14:38:02 -05:00
|
|
|
#!/bin/sh
|
2017-12-01 00:21:33 -06:00
|
|
|
|
2018-04-19 01:43:29 -05:00
|
|
|
# this file is executed when calling startx
|
|
|
|
|
2018-05-13 17:21:50 -05:00
|
|
|
# To run a different WM, set session="WM" below, or run:
|
2018-05-01 23:57:34 -05:00
|
|
|
# startx ~/.xinitrc WM
|
2018-04-19 01:43:29 -05:00
|
|
|
|
|
|
|
|
2018-05-08 02:34:04 -05:00
|
|
|
# Session to run if none passed via startx
|
2017-12-07 22:20:42 -06:00
|
|
|
session=${1:-openbox}
|
2018-04-19 01:43:29 -05:00
|
|
|
|
2018-05-08 02:34:04 -05:00
|
|
|
# set environment wm for use in scripts
|
2018-02-04 10:09:32 -06:00
|
|
|
export WM="$session"
|
|
|
|
|
2018-04-19 01:43:29 -05:00
|
|
|
# Default Arch xinit scripts
|
2017-10-16 14:38:02 -05:00
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
2018-02-04 10:09:32 -06:00
|
|
|
for f in /etc/X11/xinit/xinitrc.d/*.sh; do
|
2017-12-01 00:21:33 -06:00
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
2017-10-16 14:38:02 -05:00
|
|
|
fi
|
|
|
|
|
2018-04-19 01:43:29 -05:00
|
|
|
# user init scripts and settings
|
2018-05-08 02:34:04 -05:00
|
|
|
[ -f /etc/X11/xinit/.Xmodmap ] && xmodmap /etc/X11/xinit/.Xmodmap
|
|
|
|
[ -f ~/.Xmodmap ] && xmodmap ~/.Xmodmap
|
|
|
|
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
|
|
|
|
[ -f ~/.xprofile ] && source ~/.xprofile
|
2018-04-19 01:43:29 -05:00
|
|
|
|
2018-05-08 02:34:04 -05:00
|
|
|
# keyring for storing passwords
|
2018-05-01 23:57:34 -05:00
|
|
|
if hash gnome-keyring &>/dev/null; then
|
|
|
|
gnome-keyring-daemon --start --components=pkcs11 &
|
|
|
|
fi
|
|
|
|
|
2018-05-08 02:34:04 -05:00
|
|
|
# display timeout and sleep
|
|
|
|
xset s 3600 3600
|
|
|
|
xset dpms 3600 3700 4000
|
2018-04-19 01:43:29 -05:00
|
|
|
|
|
|
|
# keyboard repeat rate
|
2018-02-04 10:09:32 -06:00
|
|
|
xset r rate 400 50
|
2018-05-08 02:34:04 -05:00
|
|
|
kbdrate -d 400 -r 50
|
2018-04-19 01:43:29 -05:00
|
|
|
|
2018-05-08 02:34:04 -05:00
|
|
|
# 1/1 mouse acceleration
|
|
|
|
xset m 1/1
|
2017-10-16 14:38:02 -05:00
|
|
|
|
2018-04-19 01:43:29 -05:00
|
|
|
|
2018-05-08 02:34:04 -05:00
|
|
|
# Do NOT put commands below the exec lines
|
2017-12-07 22:20:42 -06:00
|
|
|
case $session in
|
2018-05-08 02:34:04 -05:00
|
|
|
i3|i3wm) exec i3 ;;
|
|
|
|
bsp|bspwm) exec bspwm ;;
|
|
|
|
xfce|xfce4) exec startxfce4 ;;
|
|
|
|
openbox) exec openbox-session ;;
|
|
|
|
awesome) exec awesome ;;
|
|
|
|
dwm) exec dwm ;;
|
|
|
|
*) exec "$1" # Unknown, try running it
|
2017-12-07 22:20:42 -06:00
|
|
|
esac
|