commit 05ae7283db168a61a1323c32d2ee9093d5491ec1
parent 6ab9ade1f90ce0277c840394b0f2cef361900ed9
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Thu, 27 May 2021 23:08:35 -0400
Tweak xinitrc
Diffstat:
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/.xinitrc b/.xinitrc
@@ -9,7 +9,13 @@
xrdb -merge ~/.Xresources &
# Ensure mouse acceleration is off
-xset m 0 0 &
+xset m 0 0
+
+# Disable screen blanking
+xset s off -dpms
+
+# Disable bel
+xset -b
# Start SSH Agent (with environment variables)
eval "$(ssh-agent)"
@@ -20,22 +26,19 @@ setxkbmap -option "compose:caps" &
# Set default cursor shape to "regular" mouse cursor
xsetroot -cursor_name left_ptr &
-# Disable bel
-xset -b &
-
# Hide mouse cursor after n seconds of inactivity
pkill unclutter; unclutter -idle 3 -root &
-# Start status bar
-pkill status; status &
-
-# Set background image
-feh --bg-fill --no-fehbg ~/media/pics/wallpapers/iceberg-lines-4k.png &
-
# Start compositor
pkill picom; picom &
# Start notification daemon
pkill dunst; dunst &
+# Start status bar
+pkill status; status &
+
+# Set background image
+feh --bg-fill --no-fehbg ~/media/pics/wallpapers/iceberg-lines-4k.png
+
exec dwm