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