home: i3: disable scroll wheel in i3bar

This commit is contained in:
Antoine Martin 2021-04-24 02:46:17 +02:00
parent c04b96b6f7
commit df51f01e89

View file

@ -44,6 +44,12 @@ in
fonts = [ "DejaVuSansMono" "FontAwesome5Free 9" ]; fonts = [ "DejaVuSansMono" "FontAwesome5Free 9" ];
colors = i3Theme.bar; colors = i3Theme.bar;
# disable mouse scroll wheel in bar
extraConfig = ''
bindsym button4 nop
bindsym button5 nop
'';
} }
]; ];