keybinds: simulate workspace switch on focusWindow to another ws

This commit is contained in:
vaxerski
2023-05-01 15:39:08 +01:00
parent d6b069458d
commit 45b1e6dc5e
3 changed files with 30 additions and 7 deletions

View File

@@ -51,13 +51,15 @@ class CWorkspace {
bool m_bDefaultPseudo = false;
// don't destroy in sanity check
bool m_bIndestructible = false;
bool m_bIndestructible = false;
void startAnim(bool in, bool left, bool instant = false);
void setActive(bool on);
void startAnim(bool in, bool left, bool instant = false);
void setActive(bool on);
void moveToMonitor(const int&);
void moveToMonitor(const int&);
CWindow* getLastFocusedWindow();
void rememberPrevWorkspace(const CWorkspace* prevWorkspace);
CWindow* getLastFocusedWindow();
void rememberPrevWorkspace(const CWorkspace* prevWorkspace);
std::string getConfigName();
};