From cb2ad3393ac081dab731796cd590ed22c1b3b4ed Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 11 Jul 2022 21:04:21 +0200 Subject: [PATCH] feat(i3): automatically hide mouse cursor --- home-manager/i3/default.nix | 1 + home-mandlm.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/home-manager/i3/default.nix b/home-manager/i3/default.nix index fb6c7c2..292e306 100644 --- a/home-manager/i3/default.nix +++ b/home-manager/i3/default.nix @@ -65,6 +65,7 @@ in }; startup = [ + { command = "unclutter -idle 1"; notification = false; } { command = "i3-msg 'workspace 1; append_layout ~/.config/i3/workspaces/workspace-1.json'"; } { command = "i3-msg 'workspace 2; append_layout ~/.config/i3/workspaces/workspace-2.json'"; } { command = "i3-msg 'workspace 4; append_layout ~/.config/i3/workspaces/workspace-4.json'"; } diff --git a/home-mandlm.nix b/home-mandlm.nix index 4712cc8..e80e0aa 100644 --- a/home-mandlm.nix +++ b/home-mandlm.nix @@ -29,6 +29,7 @@ element-desktop difftastic zoom-us + unclutter ]; stateVersion = "22.05";