| 1 | #!/bin/sh |
| 2 | # |
| 3 | # ~/.xinitrc |
| 4 | # |
| 5 | # Executed by startx (run your window manager from here) |
| 6 | |
| 7 | if [ -d /etc/X11/xinit/xinitrc.d ]; then |
| 8 | for f in /etc/X11/xinit/xinitrc.d/*; do |
| 9 | [ -x "$f" ] && . "$f" |
| 10 | done |
| 11 | unset f |
| 12 | fi |
| 13 | |
| 14 | # workaround for some java apps, when running a non-reparenting window manager |
| 15 | export _JAVA_AWT_WM_NONREPARENTING=1 |
| 16 | |
| 17 | xrdb -merge ~/.Xresources |
| 18 | # xrdb -merge ~/.base16-tomorrow.dark.256.xresources |
| 19 | xrdb -merge ~/.gotham.xresources |
| 20 | # xrdb -merge ~/.hybrid.xresources |
| 21 | # xrdb -merge ~/.dawn.xresources |
| 22 | # xrdb -merge ~/.zenburn.xresources |
| 23 | # xrdb -merge ~/.solarized-dark.xresources |
| 24 | |
| 25 | # set the cursor icon |
| 26 | # xsetroot -cursor_name left_ptr & |
| 27 | |
| 28 | # set the wallpaper |
| 29 | # sh ~/.fehbg & |
| 30 | |
| 31 | # font stuff |
| 32 | # xset +fp /usr/share/fonts/local |
| 33 | # xset +fp ~/.fonts |
| 34 | # xset fp rehash |
| 35 | # xset b off |
| 36 | |
| 37 | # the compositor |
| 38 | #compton & |
| 39 | |
| 40 | # xbacklight -set 50 |
| 41 | |
| 42 | # synaptics (touchpad) configs |
| 43 | synclient TapButton2=3 |
| 44 | synclient TapButton3=2 |
| 45 | synclient HorizTwoFingerScroll=1 |
| 46 | synclient VertScrollDelta=-237 |
| 47 | synclient HorizScrollDelta=-237 |
| 48 | |
| 49 | # swap caps lock and esc |
| 50 | setxkbmap -option caps:swapescape |
| 51 | |
| 52 | # MPD daemon start (if no other instance exists) |
| 53 | [ -z $(pidof mpd) ] && mpd & |
| 54 | |
| 55 | # screen powersave |
| 56 | # xset +dpms |
| 57 | # xset dpms 0 0 300 |
| 58 | |
| 59 | # lock the screen using lightdm after 5 minutes |
| 60 | # xautolock -time 5 -locker "slimlock" & |
| 61 | |
| 62 | # adjust the keypress delays |
| 63 | xset r rate 200 20 |
| 64 | |
| 65 | # exec gnome-session |
| 66 | # exec startkde |
| 67 | # exec startxfce4 |
| 68 | # ...or the Window Manager of your choice |
| 69 | # source ~/.profile |
| 70 | xfsettingsd & |
| 71 | xfdesktop --disable-wm-check & |
| 72 | xfce4-panel --disable-wm-check & |
| 73 | bspwm & |
| 74 | sxhkd & |
| 75 | emacs --daemon & |
| 76 | sleep 2 && pnmixer & |
| 77 | # panel & |
| 78 | |
| 79 | # DEFAULTSESSION=bspwm |
| 80 | # case "$1" in |
| 81 | # i3) exec i3;; |
| 82 | # bspwm) exec bspwm;; |
| 83 | # *) exec $DEFAULTSESSION ;; |
| 84 | # esac |