added workspaces
This commit is contained in:
parent
45addfb31d
commit
50370e4216
10 changed files with 136 additions and 12 deletions
|
|
@ -13,6 +13,7 @@ struct SMonitor {
|
|||
bool primary = false;
|
||||
|
||||
uint64_t ID = -1;
|
||||
int activeWorkspace = -1;
|
||||
|
||||
std::string szName = "";
|
||||
|
||||
|
|
|
|||
9
src/helpers/Workspace.hpp
Normal file
9
src/helpers/Workspace.hpp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#include "../defines.hpp"
|
||||
|
||||
struct SWorkspace {
|
||||
int ID = -1;
|
||||
uint64_t monitorID = -1;
|
||||
bool hasFullscreenWindow = false;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue