diff --git a/options.html b/options.html index 57ce166cd..ca4055295 100644 --- a/options.html +++ b/options.html @@ -9377,9 +9377,10 @@ Can be used to specify extensions.

Type:

services.sxhkd.extraOptions

Command line arguments to invoke sxhkd with.

Type: list of string

Default: [ ]

Example: [ "-m 1" ]

Declared by:

<home-manager/modules/services/sxhkd.nix> -
services.sxhkd.keybindings

An attribute set that assigns hotkeys to commands.

Type: attribute set of (null or string)

Default: { }

Example:

{
+                
services.sxhkd.keybindings

An attribute set that assigns hotkeys to commands.

Type: attribute set of (null or string or path)

Default: { }

Example:

{
   "super + shift + {r,c}" = "i3-msg {restart,reload}";
   "super + {s,w}"         = "i3-msg {stacking,tabbed}";
+  "super + F1"            = pkgs.writeShellScript "script" "echo $USER";
 }
 

Declared by:

<home-manager/modules/services/sxhkd.nix>