summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-06-22 00:07:21 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-06-22 00:07:21 +0400
commitfc282a1549eaf0e831524d879724d901c3964b9a (patch)
tree605d768ba0bdd68f871a71b61aacd3f7e6f93915 /config
parent915c63f96325797aacc7138a4c1e9aba7e5002f4 (diff)
feat(xinitrc): run unclutter in the background
- Set keyboard layout to US
Diffstat (limited to 'config')
-rw-r--r--config/x11/xinitrc13
1 files changed, 8 insertions, 5 deletions
diff --git a/config/x11/xinitrc b/config/x11/xinitrc
index fee3943..f874be6 100644
--- a/config/x11/xinitrc
+++ b/config/x11/xinitrc
@@ -15,12 +15,15 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
unset f
fi
-setxkbmap -option "caps:ctrl_modifier" # change caps_lock to ctrl
-xset r rate 300 50 # increase cursor speed
-xset s off && xset -dpms # disable screen blackening
-xgamma -gamma 0.8 # change gamma
-swall # set wallpaper
dunst &
picom &
+setxkbmap -option "caps:ctrl_modifier" # Map Caps Lock to Ctrl
+setxkbmap us # Set US keyboard layout
slstatus &
+swall # Set a wallpaper
+unclutter & # Hide mouse cursor if inactive
+xgamma -gamma 0.8 # Change gamma
+xset r rate 300 50 # Increase cursor speed
+xset s off && xset -dpms # Disable screen blackening
+
exec dwm