mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
sway: use --to-code
in bindsym
This commit is contained in:
parent
b886cbea0b
commit
37202a1b70
1 changed files with 3 additions and 2 deletions
|
@ -10,8 +10,9 @@ rec {
|
|||
|
||||
keybindingsStr = keybindings:
|
||||
concatStringsSep "\n" (mapAttrsToList (keycomb: action:
|
||||
optionalString (action != null) "bindsym ${keycomb} ${action}")
|
||||
keybindings);
|
||||
optionalString (action != null) "bindsym ${
|
||||
lib.optionalString (moduleName == "sway") "--to-code "
|
||||
}${keycomb} ${action}") keybindings);
|
||||
|
||||
keycodebindingsStr = keycodebindings:
|
||||
concatStringsSep "\n" (mapAttrsToList (keycomb: action:
|
||||
|
|
Loading…
Reference in a new issue