dotfiles/home/modules/gui/desktop/hypr/hyprland/config/bindm.nix

11 lines
193 B
Nix
Raw Normal View History

2025-01-08 01:05:45 -06:00
let
superBinds = builtins.map (x: "SUPER, " + x) [
"mouse:272, resizewindow"
];
altBinds = builtins.map (x: "ALT, " + x) [
"mouse:272, movewindow"
];
in
2025-01-19 23:40:54 -06:00
superBinds ++ altBinds