23 lines
655 B
Nix
23 lines
655 B
Nix
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
bindd = [
|
|
# essential
|
|
"SUPER, Return, Open Terminal, exec, ghostty" # FIXME: must be using xdg-open
|
|
"SUPER, Q, Kill active, killactive"
|
|
|
|
# move focus
|
|
"SUPER, J, Move focus down, movefocus, d"
|
|
"SUPER, K, Move focus up, movefocus, u"
|
|
"SUPER, H, Move focus left, movefocus, l"
|
|
"SUPER, L, Move focus right, movefocus, r"
|
|
|
|
# fullscreen
|
|
"SUPER, F, Toggle Fullscreen, fullscreen, 0"
|
|
"SUPER SHIFT, F, Toggle Maximized Fullscreen, fullscreen, 1"
|
|
|
|
# apps
|
|
"SUPER, W, Open browser, exec, firefox" # FIXME: must be xdg-open
|
|
];
|
|
};
|
|
}
|