nixos-configs/modules/hyprland/hyprexpo.nix
matt1432 a793ff8a13
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hypr): add stuff to make development easier
2024-06-24 11:46:08 -04:00

30 lines
750 B
Nix

{
hyprland-plugins,
pkgs,
...
}: {
wayland.windowManager.hyprland = {
plugins = [hyprland-plugins.packages.${pkgs.system}.hyprexpo];
settings = {
plugin = {
hyprexpo = {
columns = 3;
gap_size = 5;
bg_col = "rgb(111111)";
workspace_method = "center current"; # [center/first] [workspace] e.g. first 1 or center m+1
enable_gesture = true; # laptop touchpad
gesture_fingers = 3;
gesture_distance = 300; # how far is the "max"
gesture_positive = true; # positive = swipe down. Negative = swipe up.
};
};
bind = [
"ALT, tab, hyprexpo:expo, toggle" # can be: toggle, off/disable or on/enable
];
};
};
}