add keybind to view them all
This commit is contained in:
parent
d57c8f635f
commit
c227ad68f4
|
@ -133,7 +133,7 @@ in
|
||||||
# ----------------------------------------------------------------
|
# ----------------------------------------------------------------
|
||||||
|
|
||||||
# show keybinds list
|
# show keybinds list
|
||||||
bind = $mainMod, F1, exec, ~/.config/hypr/keybind
|
bind = $mainMod, F1, exec, show-keybinds
|
||||||
|
|
||||||
# keybindings
|
# keybindings
|
||||||
bind = $mainMod, Return, exec, kitty
|
bind = $mainMod, Return, exec, kitty
|
||||||
|
|
|
@ -19,6 +19,8 @@
|
||||||
extract = pkgs.writeScriptBin "extract" (builtins.readFile ./scripts/extract.sh);
|
extract = pkgs.writeScriptBin "extract" (builtins.readFile ./scripts/extract.sh);
|
||||||
|
|
||||||
shutdown-script = pkgs.writeScriptBin "shutdown-script" (builtins.readFile ./scripts/shutdown-script.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 {
|
in {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
wall-change
|
wall-change
|
||||||
|
@ -41,5 +43,7 @@ in {
|
||||||
extract
|
extract
|
||||||
|
|
||||||
shutdown-script
|
shutdown-script
|
||||||
|
|
||||||
|
show-keybinds
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue