diff options
author | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
commit | 82df70eff06e7b44ee84283070d7f801f7fc1d92 (patch) | |
tree | d17ea9cc6e012b16ff0cdeffcf4a97b5e5cd2d11 /.config/x11/xinitrc |
initial commit
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 | ||