mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 05:03:09 +00:00
sway: allow unsetting status command
This commit is contained in:
parent
37202a1b70
commit
7f4053084c
2 changed files with 5 additions and 2 deletions
|
@ -48,7 +48,10 @@ rec {
|
|||
mode ${mode}
|
||||
hidden_state ${hiddenState}
|
||||
position ${position}
|
||||
status_command ${statusCommand}
|
||||
${
|
||||
optionalString (statusCommand != null)
|
||||
"status_command ${statusCommand}"
|
||||
}
|
||||
${moduleName}bar_command ${command}
|
||||
workspace_buttons ${if workspaceButtons then "yes" else "no"}
|
||||
strip_workspace_numbers ${if !workspaceNumbers then "yes" else "no"}
|
||||
|
|
|
@ -111,7 +111,7 @@ let
|
|||
};
|
||||
|
||||
statusCommand = mkOption {
|
||||
type = types.str;
|
||||
type = types.nullOr types.str;
|
||||
default = "${pkgs.i3status}/bin/i3status";
|
||||
description = "Command that will be used to get status lines.";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue