nixos-configs/modules/hyprland/hycov.nix
matt1432 a7378fb5cc
All checks were successful
Discord / discord commits (push) Has been skipped
fix(hycov): disable hot area
2024-02-05 20:26:52 -05:00

29 lines
624 B
Nix

{
hycov,
pkgs,
...
}: {
wayland.windowManager.hyprland = {
plugins = [hycov.packages.${pkgs.system}.hycov];
settings = {
plugin = {
hycov = {
enable_alt_release_exit = 1;
overview_gappo = 60; #gaps width from screen
overview_gappi = 24; #gaps width from clients
enable_hotarea = 0;
};
};
bind = [
"ALT, tab, hycov:toggleoverview"
"ALT, left, hycov:movefocus, l"
"ALT, right, hycov:movefocus, r"
"ALT, up, hycov:movefocus, u"
"ALT, down, hycov:movefocus, d"
];
};
};
}