Add integrated Style > Corner controls across hyprland, mako, walker

This commit is contained in:
David Heinemeier Hansson
2026-05-10 14:29:51 +02:00
parent 40a20e2a5c
commit 2e29714eee
10 changed files with 77 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
# omarchy:summary=Set Hyprland, Mako, and Walker corners to sharp or round
# omarchy:args=<sharp|round>
# omarchy:examples=omarchy style corners round | omarchy style corners sharp
if [[ $1 != "sharp" && $1 != "round" ]]; then
echo "Usage: omarchy-style-corners <sharp|round>"
exit 1
fi
omarchy-style-corners-hyprland "$1"
omarchy-style-corners-mako "$1"
omarchy-style-corners-walker "$1"