deine mum

This commit is contained in:
2025-12-12 23:11:55 +01:00
parent e1eeb370da
commit f1c68321a7
7 changed files with 42 additions and 25 deletions

View File

@@ -217,8 +217,8 @@ void HyprlandService::refresh_workspaces() {
state.id = slot;
state.hyprId = -1;
state.label = std::to_string(slot);
state.focused = (slot == focusedSlot);
state.active = state.focused;
state.active = (slot == focusedSlot);
state.focused = state.focused;
state.urgent = false;
monitor.workspaceStates.emplace(slot, state);
}
@@ -384,4 +384,4 @@ void HyprlandService::handle_urgent_window(std::string windowAddress) {
workspaceStateChanged.emit(monitor.id);
}
}
}
}