mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
18 lines
475 B
Bash
Executable File
18 lines
475 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Set or toggle shape of Hyprland window corners
|
|
# omarchy:args=[toggle|sharp|round]
|
|
# omarchy:examples=omarchy style corners hyprland toggle | omarchy style corners hyprland round | omarchy style corners hyprland sharp
|
|
|
|
case "${1:-toggle}" in
|
|
round) set -- on ;;
|
|
sharp) set -- off ;;
|
|
toggle) ;;
|
|
*)
|
|
echo "Usage: omarchy-style-corners-hyprland [toggle|sharp|round]"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
omarchy-hyprland-toggle rounded-corners "$1"
|