hyprland/workspaces: react on renameworkspace event

This commit is contained in:
Maxim Baz
2023-09-05 17:13:25 +02:00
parent f7ff005dd5
commit 9c49f46b01
2 changed files with 12 additions and 0 deletions

View File

@ -34,6 +34,7 @@ class Workspace {
void set_persistent(bool value = true) { is_persistent_ = value; };
void set_urgent(bool value = true) { is_urgent_ = value; };
void set_windows(uint value) { windows_ = value; };
void set_name(std::string value) { name_ = value; };
void update(const std::string& format, const std::string& icon);