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 /hyprctl | |
parent | addd3e7f1aeb670dd91d26005aaeccce3efb1ae7 (diff) | |
download | Hyprland-553232a3e4c112c8511309e6b685cb614895e714.tar.gz Hyprland-553232a3e4c112c8511309e6b685cb614895e714.zip |
hyprctl: Add Config Flag to `hyprctl systeminfo` (#6160)
Diffstat (limited to 'hyprctl')
-rw-r--r-- | hyprctl/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp index e9d7583c..bdf354e7 100644 --- a/hyprctl/main.cpp +++ b/hyprctl/main.cpp @@ -297,6 +297,8 @@ int main(int argc, char** argv) { fullArgs += "r"; } else if (ARGS[i] == "-a" && !fullArgs.contains("a")) { fullArgs += "a"; + } else if ((ARGS[i] == "-c" || ARGS[i] == "--config") && !fullArgs.contains("c")) { + fullArgs += "c"; } else if (ARGS[i] == "--batch") { fullRequest = "--batch "; } else if (ARGS[i] == "--instance" || ARGS[i] == "-i") { |