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,23 @@
#ifndef WORKSPACE_H
#define WORKSPACE_H
#include <string>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
class Workspace {
public:
int id;
std::string name;
std::string monitor;
int monitorID;
int windows;
bool hasfullscreen;
std::string lastwindow;
std::string lastwindowtitle;
bool ispersistent;
friend void from_json(const json& j, Workspace& workspace);
};
#endif