gwydion: fix quoting of screen names

This commit is contained in:
Jez Cope 2021-11-21 21:16:01 +00:00
parent 9e0c4436a3
commit e1641759fd
1 changed files with 6 additions and 2 deletions

View File

@ -37,7 +37,11 @@ in {
mod = config.wayland.windowManager.sway.config.modifier;
in {
config = {
keybindings = { "${mod}+Ctrl+a" = "output ${outputs.alt} toggle"; };
keybindings = {
"${mod}+Ctrl+slash" = ''output "${outputs.alt}" toggle'';
"${mod}+Shift+slash" =
''output "${outputs.alt}" transform 90 anticlockwise'';
};
output = {
"${outputs.main}" = {
@ -51,7 +55,7 @@ in {
};
};
extraConfig = ''
workspace 10 output ${outputs.alt} ${outputs.main}
workspace 10 output "${outputs.alt}" "${outputs.main}"
'';
};
}