add keybind to view them all

This commit is contained in:
Frost-Phoenix 2024-01-12 17:38:29 +01:00
parent d57c8f635f
commit c227ad68f4
2 changed files with 5 additions and 1 deletions

View file

@ -133,7 +133,7 @@ in
# ----------------------------------------------------------------
# show keybinds list
bind = $mainMod, F1, exec, ~/.config/hypr/keybind
bind = $mainMod, F1, exec, show-keybinds
# keybindings
bind = $mainMod, Return, exec, kitty

View file

@ -19,6 +19,8 @@
extract = pkgs.writeScriptBin "extract" (builtins.readFile ./scripts/extract.sh);
shutdown-script = pkgs.writeScriptBin "shutdown-script" (builtins.readFile ./scripts/shutdown-script.sh);
show-keybinds = pkgs.writeScriptBin "show-keybinds" (builtins.readFile ./scripts/keybinds.sh);
in {
home.packages = with pkgs; [
wall-change
@ -41,5 +43,7 @@ in {
extract
shutdown-script
show-keybinds
];
}