From 0af25f781c4f93c252a34db258672ad72d4fe0ef Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Mon, 22 Jun 2026 10:24:03 +0200 Subject: [PATCH] Super + Q should close instead of kill --- systems/modules/home/wm/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/modules/home/wm/hyprland.nix b/systems/modules/home/wm/hyprland.nix index 07b20c5..3919ebc 100644 --- a/systems/modules/home/wm/hyprland.nix +++ b/systems/modules/home/wm/hyprland.nix @@ -105,7 +105,7 @@ in bind = lib.flatten [ (bind "${mod} + W" (dsp.exec_cmd "pkill -SIGUSR1 -f '^waybar$'") { }) - (bind "${mod} + Q" (dsp.window.kill) { }) + (bind "${mod} + Q" (dsp.window.close) { }) (bind "${mod} + L" (dsp.exec_cmd "hyprlock") { }) (bind "${mod} + D" (dsp.exec_cmd "rofi -show drun") { }) (bind "${mod} + B" (dsp.exec_cmd "bzmenu --launcher rofi") { })