aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/debug/HyprCtl.hpp
diff options
context:
space:
mode:
authorGabriel Ford <[email protected]>2024-05-25 20:46:07 +0000
committerGitHub <[email protected]>2024-05-25 22:46:07 +0200
commit553232a3e4c112c8511309e6b685cb614895e714 (patch)
tree18bfc535208785e0577fd410b386b7ffbdf561bb /src/debug/HyprCtl.hpp
parentaddd3e7f1aeb670dd91d26005aaeccce3efb1ae7 (diff)
downloadHyprland-553232a3e4c112c8511309e6b685cb614895e714.tar.gz
Hyprland-553232a3e4c112c8511309e6b685cb614895e714.zip
hyprctl: Add Config Flag to `hyprctl systeminfo` (#6160)
Diffstat (limited to 'src/debug/HyprCtl.hpp')
-rw-r--r--src/debug/HyprCtl.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/debug/HyprCtl.hpp b/src/debug/HyprCtl.hpp
index ebcb87cf..b48ea26a 100644
--- a/src/debug/HyprCtl.hpp
+++ b/src/debug/HyprCtl.hpp
@@ -17,7 +17,8 @@ class CHyprCtl {
int m_iSocketFD = -1;
struct {
- bool all = false;
+ bool all = false;
+ bool sysInfoConfig = false;
} m_sCurrentRequestParams;
private:
@@ -26,4 +27,4 @@ class CHyprCtl {
std::vector<SP<SHyprCtlCommand>> m_vCommands;
};
-inline std::unique_ptr<CHyprCtl> g_pHyprCtl; \ No newline at end of file
+inline std::unique_ptr<CHyprCtl> g_pHyprCtl;