From df51f01e89c29c1087672544d9f17623b4eb2a03 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sat, 24 Apr 2021 02:46:17 +0200 Subject: [PATCH] home: i3: disable scroll wheel in i3bar --- home/x/i3.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home/x/i3.nix b/home/x/i3.nix index d9f5bb5..2dece35 100644 --- a/home/x/i3.nix +++ b/home/x/i3.nix @@ -44,6 +44,12 @@ in fonts = [ "DejaVuSansMono" "FontAwesome5Free 9" ]; colors = i3Theme.bar; + + # disable mouse scroll wheel in bar + extraConfig = '' + bindsym button4 nop + bindsym button5 nop + ''; } ];