From 1ab0056d5a82925d7acd2c046948f8b3e35f4f70 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 9 Aug 2022 20:31:04 +1200 Subject: Add starting unclutter to .xsession --- x/xsession.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/x/xsession.sh b/x/xsession.sh index 8f8ca25f..0fa4ad59 100644 --- a/x/xsession.sh +++ b/x/xsession.sh @@ -30,12 +30,14 @@ xset \ mouse 5/2 0 \ s off -# Start a couple of daemons if we can; it's OK if they don't exist, but log -# the failed attempt to start them to the errors file. +# Start a few daemons if we can; it's OK if they don't exist, but log the +# failed attempt to start them to the errors file. ## compton: Display compositor compton -b & ## dunst: Message display (libnotify) dunst & +## unclutter: Hide mouse after inactivity (but not on root window) +unclutter -idle 5 & # Load all supplementary scripts in ~/.xsession.d for sh in "$HOME"/.xsession.d/*.sh ; do -- cgit v1.2.3