diff options
Diffstat (limited to '.config/x11/xinitrc')
-rw-r--r-- | .config/x11/xinitrc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc new file mode 100644 index 0000000..25b2fab --- /dev/null +++ b/.config/x11/xinitrc | |||
@@ -0,0 +1,24 @@ | |||
1 | # disable screensaver | ||
2 | xset s off | ||
3 | # disable power saving | ||
4 | xset -dpms | ||
5 | # set refresh rate | ||
6 | xrandr -r 144 | ||
7 | # set background | ||
8 | bgscript | ||
9 | # remap keys | ||
10 | kbremaps | ||
11 | # load Xresources | ||
12 | xrdb ~/.config/x11/xresources | ||
13 | # start compositor | ||
14 | picom --config ~/.config/picom/picom.conf & | ||
15 | # start notification daemon | ||
16 | dunst & | ||
17 | # start unclutter | ||
18 | unclutter & | ||
19 | # start keybind daemon | ||
20 | sxhkd & | ||
21 | # start status bar | ||
22 | dwmblocks & | ||
23 | # start window manager (and keep starting when shutdown) | ||
24 | dwm | ||