diff options
author | Gabriel Ford <[email protected]> | 2024-05-25 20:46:07 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-25 22:46:07 +0200 |
commit | 553232a3e4c112c8511309e6b685cb614895e714 (patch) | |
tree | 18bfc535208785e0577fd410b386b7ffbdf561bb /src/debug/HyprCtl.hpp | |
parent | addd3e7f1aeb670dd91d26005aaeccce3efb1ae7 (diff) | |
download | Hyprland-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.hpp | 5 |
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; |