This commit is contained in:
end-4
2024-02-22 15:35:06 +07:00
commit 8db26e9707
4220 changed files with 208544 additions and 0 deletions
@@ -0,0 +1,21 @@
#include <array>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <memory>
#include <regex>
#include <stdexcept>
#include <string>
#include "nlohmann/json.hpp"
using namespace std;
using json = nlohmann::json;
int main(int argc, char* argv[]) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
entries = exec("hyprctl clients -j | gojq -c -M");
}