diff options
author | Jackson Taylor <jackson@jacksontaylor.xyz> | 2022-02-03 22:22:11 -0500 |
---|---|---|
committer | Jackson Taylor <jackson@jacksontaylor.xyz> | 2022-02-03 22:28:08 -0500 |
commit | 7888574b1c18c77b75e5c6c5930cd0709f16898a (patch) | |
tree | ed4214ac5696c5641a1d8e3d335d68f7ca72f6d2 /.config/x11/xprofile | |
parent | 7434b9127257627a48b7520effd46fb389f1fddd (diff) |
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 |