diff options
Diffstat (limited to '.config/x11/xprofile')
-rw-r--r-- | .config/x11/xprofile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.config/x11/xprofile b/.config/x11/xprofile new file mode 100644 index 0000000..fd1423b --- /dev/null +++ b/.config/x11/xprofile @@ -0,0 +1,33 @@ +#!/bin/sh + +xrdb ${XDG_CONFIG_HOME:-$HOME/.config}/x11/xresources & # Uncomment to use Xresources colors/settings on startup + +# Set wallpaper and terminal colors +set_wallpaper + +# Increase key speed via a rate change. This comes from Luke's remap script, but I don't want to remap caps lock to escape so this is all I used +xset r rate 300 50 + +# Start music player daemon +mpd & + +# Start locking application +xss-lock slock & + +# compositor for transparency/blur/animations +picom -b + +# program for keybindings +sxhkd & + +# Hide mouse when not in use +unclutter & + +# Start status bar script +dwmblocks & + +# start notification daemon +dunst & + +# xorg fix +xprofile --dpi 96 |