diff --git a/home/private_dot_config/exact_hypr/exact_hyprland/bindings.conf b/home/private_dot_config/exact_hypr/exact_hyprland/bindings.conf index 08d71b15..c52c63db 100644 --- a/home/private_dot_config/exact_hypr/exact_hyprland/bindings.conf +++ b/home/private_dot_config/exact_hypr/exact_hyprland/bindings.conf @@ -24,6 +24,7 @@ bindd = SUPER ALT, Print, Start Screen Recording, exec, ags -b hypr -r 'recorder bindd = SUPER, Backslash, Open Terminal, exec, wezterm start -- tmux bindd = SUPER, E, Open File Manager, exec, nautilus --new-window bindd = SUPER, W, Open Browser, exec, firefox-developer-edition +bindd = CTRL SHIFT, Escape, Open System Monitor, exec, gnome-system-monitor # ── Audio ───────────────────────────────────────────────────────────── binddle = , XF86AudioLowerVolume, Decrease Volume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ -l 1 2%- diff --git a/scripts/update_bindings.py b/scripts/update_bindings.py index 5639d969..890376e6 100644 --- a/scripts/update_bindings.py +++ b/scripts/update_bindings.py @@ -57,6 +57,7 @@ def parse_bindings(hyprland_config_path, variables, ahk_config_path): {"mods": ["SUPER"], "key": "Print"}, {"mods": ["SUPER", "ALT"], "key": "Print"}, {"mods": ["SUPER"], "key": "E"}, + {"mods": ["CTRL", "SHIFT"], "key": "Escape"}, {"mods": [], "key": "XF86AudioLowerVolume"}, {"mods": [], "key": "XF86AudioRaiseVolume"}, {"mods": [], "key": "XF86AudioMute"},