From d6b27cf9ddceeb84eb314b00568fa55e685c7153 Mon Sep 17 00:00:00 2001 From: Rasmion <42215949+Rasmion@users.noreply.github.com> Date: Tue, 12 May 2026 14:45:53 +0200 Subject: [PATCH] fix(keybinds): correct fullscreen and maximize bind syntax --- dots/.config/hypr/hyprland/keybinds.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dots/.config/hypr/hyprland/keybinds.lua b/dots/.config/hypr/hyprland/keybinds.lua index 8a9490fbf..f8ea09189 100644 --- a/dots/.config/hypr/hyprland/keybinds.lua +++ b/dots/.config/hypr/hyprland/keybinds.lua @@ -113,9 +113,9 @@ hl.bind("SUPER + Semicolon", hl.dsp.layout("splitratio -0.1"), {repeating = true hl.bind("SUPER + Apostrophe", hl.dsp.layout("splitratio +0.1"), {repeating = true} ) --# Positioning mode hl.bind("SUPER + ALT + Space", hl.dsp.window.float({action = "toggle"}), {description = "Float/Tile"} ) -hl.bind("SUPER + D", hl.dsp.window.fullscreen({"maximized"}, {description = "Maximize"}) ) -hl.bind("SUPER + F", hl.dsp.window.fullscreen({"fullscreen"}, {description = "Fullscreen"}) ) -hl.bind("SUPER + ALT + F", hl.dsp.window.fullscreen_state({internal = 0, client = 3}, {description = "Fullscreen spoof"}) ) +hl.bind("SUPER + D", hl.dsp.window.fullscreen({mode = "maximized"}), {description = "Maximize"}) +hl.bind("SUPER + F", hl.dsp.window.fullscreen({mode ="fullscreen"}), {description = "Fullscreen"}) +hl.bind("SUPER + ALT + F", hl.dsp.window.fullscreen_state({internal = 0, client = 3}), {description = "Fullscreen spoof"}) hl.bind("SUPER + P", hl.dsp.window.pin(), {description = "Pin"} ) --#/# bind = SUPER+ALT, Hash,, -- Send to workspace -- (1, 2, 3,...)