Vendor pkgs: add subflake directories

This commit is contained in:
2026-04-12 19:55:23 +02:00
parent ce5fafcf29
commit cb93e97ef5
33 changed files with 1885 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
#ifndef WINDOW_RULE_H
#define WINDOW_RULE_H
#include <string>
class WindowRule {
public:
//true -> tiling mode
//false -> floating mode
bool tile;
//Which workspace to apply to
int workspaceID;
std::string toString();
static WindowRule parse(std::string);
};
#endif