fresh install
[dotfiles.git] / x / .xinitrc
1 #!/bin/bash
2 #To fix java applications in tiling (e.g. arduino)
3 export _JAVA_AWT_WM_NONREPARENTING=1
4
5 # notifications
6 dunst &
7
8 # auto locking but only on laptop
9 if [ $(hostname) != ygdrassil ]; then
10 xautolock -locker slock -time 10 &
11 fi
12
13 # status bar
14 slstatus &
15
16 # compositor
17 xcompmgr -a -c -l0 -t0 -r0 -o.00 &
18
19 setxkbmap dvorak,ru ,phonetic_dvorak compose:ralt,grp:shifts_toggle,grp_led:scroll,ctrl:swapcaps
20
21 # Other system wide xinit files
22 if [ -f /etc/X11/xinit/xinitrc ]; then
23 . /etc/X11/xinit/xinitrc
24 fi