Adds a test suite for testing hyprland's features with a runtime tester --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
16 lines
No EOL
321 B
C++
16 lines
No EOL
321 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
struct SInstanceData {
|
|
std::string id;
|
|
uint64_t time;
|
|
uint64_t pid;
|
|
std::string wlSocket;
|
|
bool valid = true;
|
|
};
|
|
|
|
std::vector<SInstanceData> instances();
|
|
std::string getFromSocket(const std::string& cmd); |