aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprctl
diff options
context:
space:
mode:
authorMightyPlaza <[email protected]>2023-12-28 15:38:16 +0000
committerGitHub <[email protected]>2023-12-28 16:38:16 +0100
commit5f65946c84ed6ba3703e865d9a70f98cbb1ae479 (patch)
tree749a347ba1fbbdc32e0c89f21adc64f4bf7920e5 /hyprctl
parent6a93cee74e8f076068bea1463b95ee0374c50a3a (diff)
downloadHyprland-5f65946c84ed6ba3703e865d9a70f98cbb1ae479.tar.gz
Hyprland-5f65946c84ed6ba3703e865d9a70f98cbb1ae479.zip
hyprctl: add decorations (#4275)
* add hyprctl decorations modified: hyprctl/main.cpp modified: src/debug/HyprCtl.cpp modified: src/render/decorations/CHyprBorderDecoration.cpp modified: src/render/decorations/CHyprBorderDecoration.hpp modified: src/render/decorations/CHyprDropShadowDecoration.cpp modified: src/render/decorations/CHyprDropShadowDecoration.hpp modified: src/render/decorations/CHyprGroupBarDecoration.cpp modified: src/render/decorations/CHyprGroupBarDecoration.hpp modified: src/render/decorations/IHyprWindowDecoration.cpp modified: src/render/decorations/IHyprWindowDecoration.hpp * fixes modified: hyprctl/main.cpp modified: src/render/decorations/IHyprWindowDecoration.cpp
Diffstat (limited to 'hyprctl')
-rw-r--r--hyprctl/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index 2f0e08ed..7285f5b8 100644
--- a/hyprctl/main.cpp
+++ b/hyprctl/main.cpp
@@ -31,6 +31,7 @@ commands:
binds
clients
cursorpos
+ decorations
devices
dispatch
getoption
@@ -423,6 +424,8 @@ int main(int argc, char** argv) {
request(fullRequest, 1);
else if (fullRequest.contains("/keyword"))
request(fullRequest, 2);
+ else if (fullRequest.contains("/decorations"))
+ request(fullRequest, 1);
else if (fullRequest.contains("/hyprpaper"))
requestHyprpaper(fullRequest);
else if (fullRequest.contains("/layouts"))