From 5001ee38c8cc7e99b552ffe10bfaad0178cb08c4 Mon Sep 17 00:00:00 2001 From: sumnerevans Date: Fri, 30 Jun 2023 23:50:13 +0000 Subject: [PATCH] deploy: 44d1a8542ac92f0ce75d970090216245043a2709 --- options.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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>