diff options
author | vaxerski <[email protected]> | 2022-07-10 15:41:26 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-07-10 15:41:26 +0200 |
commit | 4b334594dc0d8989d8bb09c7db76694aacc71951 (patch) | |
tree | 9b5fcedc0470209959cd6553b95d9632883f82de /hyprctl | |
parent | 06c0be5ea6e3ed6b7fe7a45a550d42bc646ad6db (diff) | |
download | Hyprland-4b334594dc0d8989d8bb09c7db76694aacc71951.tar.gz Hyprland-4b334594dc0d8989d8bb09c7db76694aacc71951.zip |
Added splashes
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 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); |