keybinds: add movegroupwindow

This commit is contained in:
vaxerski
2023-07-13 17:55:20 +02:00
parent d3a644d81c
commit 9f7382bca4
4 changed files with 54 additions and 1 deletions

View File

@@ -27,7 +27,8 @@ struct SKeybind {
bool shadowed = false;
};
enum eFocusWindowMode {
enum eFocusWindowMode
{
MODE_CLASS_REGEX = 0,
MODE_TITLE_REGEX,
MODE_ADDRESS,
@@ -144,6 +145,7 @@ class CKeybindManager {
static void lockActiveGroup(std::string);
static void moveIntoGroup(std::string);
static void moveOutOfGroup(std::string);
static void moveGroupWindow(std::string);
static void global(std::string);
friend class CCompositor;