aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprctl
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2022-07-10 15:41:26 +0200
committervaxerski <[email protected]>2022-07-10 15:41:26 +0200
commit4b334594dc0d8989d8bb09c7db76694aacc71951 (patch)
tree9b5fcedc0470209959cd6553b95d9632883f82de /hyprctl
parent06c0be5ea6e3ed6b7fe7a45a550d42bc646ad6db (diff)
downloadHyprland-4b334594dc0d8989d8bb09c7db76694aacc71951.tar.gz
Hyprland-4b334594dc0d8989d8bb09c7db76694aacc71951.zip
Added splashes
Diffstat (limited to 'hyprctl')
-rw-r--r--hyprctl/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index a1a1122d..b0aa1be8 100644
--- a/hyprctl/main.cpp
+++ b/hyprctl/main.cpp
@@ -27,6 +27,7 @@ const std::string USAGE = R"#(usage: hyprctl [command] [(opt)args]
keyword
version
kill
+ splash
hyprpaper
reload)#";
@@ -201,6 +202,7 @@ int main(int argc, char** argv) {
else if (!strcmp(argv[1], "layers")) request("layers");
else if (!strcmp(argv[1], "version")) request("version");
else if (!strcmp(argv[1], "kill")) request("kill");
+ else if (!strcmp(argv[1], "splash")) request("splash");
else if (!strcmp(argv[1], "devices")) request("devices");
else if (!strcmp(argv[1], "reload")) request("reload");
else if (!strcmp(argv[1], "dispatch")) dispatchRequest(argc, argv);