18 lines
479 B
Bash
Executable File
18 lines
479 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Set or toggle shape of Hyprland window corners
|
|
# omarchy:args=[toggle|sharp|round]
|
|
# omarchy:examples=omarchy hyprland window corners toggle | omarchy hyprland window corners round | omarchy hyprland window corners sharp
|
|
|
|
case "${1:-toggle}" in
|
|
round) set -- on ;;
|
|
sharp) set -- off ;;
|
|
toggle) ;;
|
|
*)
|
|
echo "Usage: omarchy-hyprland-window-corners [toggle|sharp|round]"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
omarchy-hyprland-toggle rounded-corners "$1"
|