b735fe373d3585adf02b6185d46e2f0616b6da47
[~bandali/configs] / x / .xinitrc
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 # Enable this for non-reparenting window managers
15 export _JAVA_AWT_WM_NONREPARENTING=1
16
17 xrdb -merge ~/.Xresources
18 xsetroot -cursor_name left_ptr & # set the cursor icon
19 sh ~/.fehbg &
20 xset +fp /usr/share/fonts/local
21 xset +fp ~/.fonts
22 xset fp rehash
23 xset b off
24 #xrdb -merge ~/.theme/base16-thewildhunt.dark.xresources
25 compton &
26 xbacklight -set 50
27 synclient TapButton2=3
28 synclient TapButton3=2
29 synclient HorizTwoFingerScroll=1
30 synclient VertScrollDelta=-237
31 synclient HorizScrollDelta=-237
32
33 # MPD daemon start (if no other instance exists)
34 [ -z $(pidof mpd) ] && mpd &
35
36 # screen powersave
37 xset +dpms
38 xset dpms 0 0 300
39 xautolock -time 5 -locker i3lock-wrapper &
40
41 # exec gnome-session
42 # exec startkde
43 #exec startxfce4
44 # ...or the Window Manager of your choice
45 source ~/.profile
46 sxhkd &
47 panel &
48
49 DEFAULTSESSION=bspwm
50 case "$1" in
51 i3) exec i3;;
52 bspwm) exec bspwm;;
53 *) exec $DEFAULTSESSION ;;
54 esac