d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
12 lines
450 B
Diff
12 lines
450 B
Diff
--- a/src/modules/wlr/workspace_manager.cpp
|
|
+++ b/src/modules/wlr/workspace_manager.cpp
|
|
@@ -523,7 +523,8 @@
|
|
if (action.empty())
|
|
return true;
|
|
else if (action == "activate") {
|
|
- zext_workspace_handle_v1_activate(workspace_handle_);
|
|
+ const std::string command = "hyprctl dispatch workspace " + name_;
|
|
+ system(command.c_str());
|
|
} else if (action == "close") {
|
|
zext_workspace_handle_v1_remove(workspace_handle_);
|
|
} else {
|