mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
15 lines
408 B
Bash
Executable File
15 lines
408 B
Bash
Executable File
#!/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"
|