From 0788960a9d3fc6fc34cb48ead54e99ae83a721fb Mon Sep 17 00:00:00 2001 From: Maaz Khokhar Date: Tue, 7 Jul 2026 01:23:03 -0500 Subject: [PATCH] wlogout with ctrl + alt + delete --- desktops/hyprland/default.nix | 1 + home/river/config/hypr/keybinds.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/desktops/hyprland/default.nix b/desktops/hyprland/default.nix index 848e6c0..93c6f8a 100644 --- a/desktops/hyprland/default.nix +++ b/desktops/hyprland/default.nix @@ -24,5 +24,6 @@ waybar quickshell qt6.qtdeclarative + wlogout ]; } diff --git a/home/river/config/hypr/keybinds.lua b/home/river/config/hypr/keybinds.lua index 4494a97..4aa7eaf 100644 --- a/home/river/config/hypr/keybinds.lua +++ b/home/river/config/hypr/keybinds.lua @@ -13,6 +13,7 @@ hl.bind( mainMod .. " + SHIFT + Escape", hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'") ) +hl.bind("CTRL + ALT + DELETE", hl.dsp.exec_cmd("wlogout")) hl.bind(mainMod .. " + V", hl.dsp.window.float({ action = "toggle" })) hl.bind(mainMod .. " + J", hl.dsp.layout("togglesplit")) hl.bind(mainMod .. " + F", hl.dsp.window.fullscreen({ mode = "fullscreen", action = "toggle" }))