I am looking for a way to disable the super key + mousewheel scroll.
Background:
I do use the super key + mouse to manage windows a lot (left click move, middle click resize). When resizing a windows with middle click I often switch to a different workspace as clicking my mouse wheel triggers also a mouse wheel scroll.
function enable() {
global.display.block_signal_handler(Main.wm._superScrollId);
}
function disable() {
global.display.unblock_signal_handler(Main.wm._superScrollId);
}