Added named workspaces

This commit is contained in:
vaxerski
2022-04-21 16:38:48 +02:00
parent c02afa0c27
commit b618fc1caa
4 changed files with 71 additions and 18 deletions

View File

@@ -7,7 +7,10 @@ public:
CWorkspace(int monitorID);
~CWorkspace();
// Workspaces ID-based have IDs > 0
// and workspaces name-based have IDs starting with -1337
int m_iID = -1;
std::string m_szName = "";
uint64_t m_iMonitorID = -1;
bool m_bHasFullscreenWindow = false;