Restore Hyprland reload binding

This commit is contained in:
2026-04-29 07:26:42 -07:00
parent 8933f8e545
commit 87fd1681e2
3 changed files with 5 additions and 2 deletions

View File

@@ -274,6 +274,9 @@ Required behavior:
- `Super+p` opens the application launcher. - `Super+p` opens the application launcher.
- `Super+Shift+p` opens the run menu. - `Super+Shift+p` opens the run menu.
- `Super+Shift+Return` opens a terminal. - `Super+Shift+Return` opens a terminal.
- `Super+q` reloads the window manager config.
- `Super+Shift+c` closes the focused window.
- `Super+Shift+q` exits the window manager session.
- `Super+Tab` opens the overview. - `Super+Tab` opens the overview.
- `Super+Shift+Tab` opens the overview in bring-window mode when supported. - `Super+Shift+Tab` opens the overview in bring-window mode when supported.
- `Super+g` opens the go-to-window picker. - `Super+g` opens the go-to-window picker.

View File

@@ -252,7 +252,7 @@ bind = $mainMod SHIFT, Return, exec, $terminal
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
bind = $mainMod, TAB, hyprexpo:expo, toggle bind = $mainMod, TAB, hyprexpo:expo, toggle
bind = $mainMod SHIFT, TAB, hyprexpo:expo, bring bind = $mainMod SHIFT, TAB, hyprexpo:expo, bring
bind = $mainMod, Q, killactive, bind = $mainMod, Q, exec, hyprctl reload
bind = $mainMod SHIFT, C, killactive, bind = $mainMod SHIFT, C, killactive,
bind = $mainMod SHIFT, Q, exit, bind = $mainMod SHIFT, Q, exit,
# Emacs-everywhere (like XMonad's emacs-everywhere) # Emacs-everywhere (like XMonad's emacs-everywhere)

View File

@@ -1236,7 +1236,7 @@ end
bind(main_mod .. " + P", exec(menu)) bind(main_mod .. " + P", exec(menu))
bind(main_mod .. " + SHIFT + P", exec(run_menu)) bind(main_mod .. " + SHIFT + P", exec(run_menu))
bind(main_mod .. " + SHIFT + Return", exec(terminal)) bind(main_mod .. " + SHIFT + Return", exec(terminal))
bind(main_mod .. " + Q", hl.dsp.window.close()) bind(main_mod .. " + Q", exec("hyprctl reload"))
bind(main_mod .. " + SHIFT + C", hl.dsp.window.close()) bind(main_mod .. " + SHIFT + C", hl.dsp.window.close())
bind(main_mod .. " + SHIFT + Q", hl.dsp.exit()) bind(main_mod .. " + SHIFT + Q", hl.dsp.exit())
bind(main_mod .. " + E", exec("emacsclient --eval '(emacs-everywhere)'")) bind(main_mod .. " + E", exec("emacsclient --eval '(emacs-everywhere)'"))