Merge pull request #4677 from mliszcz/remove-window-format
fix(sway/workspaces): window-rewrite: do not check for window-format
This commit is contained in:
commit
06484547d1
|
|
@ -179,7 +179,6 @@ n.b.: the list of outputs can be obtained from command line using *swaymsg -t ge
|
||||||
"format": "<span size='larger'>{name}</span> {windows}",
|
"format": "<span size='larger'>{name}</span> {windows}",
|
||||||
"format-window-separator": " | ",
|
"format-window-separator": " | ",
|
||||||
"window-rewrite-default": "{name}",
|
"window-rewrite-default": "{name}",
|
||||||
"window-format": "<span color='#e0e0e0'>{name}</span>",
|
|
||||||
"window-rewrite": {
|
"window-rewrite": {
|
||||||
"class<firefox>": "",
|
"class<firefox>": "",
|
||||||
"class<kitty>": "k",
|
"class<kitty>": "k",
|
||||||
|
|
|
||||||
|
|
@ -331,7 +331,7 @@ auto Workspaces::update() -> void {
|
||||||
}
|
}
|
||||||
std::string output = (*it)["name"].asString();
|
std::string output = (*it)["name"].asString();
|
||||||
std::string windows = "";
|
std::string windows = "";
|
||||||
if (config_["window-format"].isString()) {
|
if (config_["window-rewrite"].isObject()) {
|
||||||
updateWindows((*it), windows);
|
updateWindows((*it), windows);
|
||||||
}
|
}
|
||||||
if (config_["format"].isString()) {
|
if (config_["format"].isString()) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue