diff --git a/man/waybar-sway-workspaces.5.scd b/man/waybar-sway-workspaces.5.scd index 18fe6f4..9c9c214 100644 --- a/man/waybar-sway-workspaces.5.scd +++ b/man/waybar-sway-workspaces.5.scd @@ -128,3 +128,4 @@ n.b.: the list of outputs can be obtained from command line using *swaymsg -t ge - *#workspaces button.focused* - *#workspaces button.urgent* - *#workspaces button.persistent* +- *#workspaces button.current_output* diff --git a/src/modules/sway/workspaces.cpp b/src/modules/sway/workspaces.cpp index 91df113..bd003cb 100644 --- a/src/modules/sway/workspaces.cpp +++ b/src/modules/sway/workspaces.cpp @@ -154,6 +154,15 @@ auto Workspaces::update() -> void { } else { button.get_style_context()->remove_class("persistent"); } + if ((*it)["output"].isString()) { + if (((*it)["output"].asString()) == bar_.output->name) { + button.get_style_context()->add_class("current_output"); + } else { + button.get_style_context()->remove_class("current_output"); + } + } else { + button.get_style_context()->remove_class("current_output"); + } if (needReorder) { box_.reorder_child(button, it - workspaces_.begin()); }