Initial transfer to sway on work PC #2
1 changed files with 21 additions and 0 deletions
|
@ -45,6 +45,25 @@ in
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
workspaceOutputs = mkOption {
|
||||||
|
description = "Assign workspaces to outputs";
|
||||||
|
type = types.listOf (types.submodule {
|
||||||
|
options = {
|
||||||
|
output = mkOption {
|
||||||
|
description = "Name(s) of the output to assign";
|
||||||
|
type = with types; either str (listOf str);
|
||||||
|
apply = lists.toList;
|
||||||
|
default = "";
|
||||||
|
};
|
||||||
|
workspace = mkOption {
|
||||||
|
description = "Name of the workspace to assign";
|
||||||
|
type = types.str;
|
||||||
|
default = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
default = [ ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
@ -102,6 +121,8 @@ in
|
||||||
|
|
||||||
defaultWorkspace = "workspace number 1";
|
defaultWorkspace = "workspace number 1";
|
||||||
|
|
||||||
|
workspaceOutputAssign = cfg.workspaceOutputs;
|
||||||
|
|
||||||
left = "n";
|
left = "n";
|
||||||
down = "e";
|
down = "e";
|
||||||
up = "i";
|
up = "i";
|
||||||
|
|
Loading…
Reference in a new issue