20 lines
770 B
Bash
Executable File
20 lines
770 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=No-op shim; the shell now mirrors Hyprland's decoration:rounding directly
|
|
# omarchy:args=[toggle|sharp|round]
|
|
# omarchy:examples=omarchy style corners quickshell toggle | omarchy style corners quickshell round | omarchy style corners quickshell sharp
|
|
|
|
# qs.Commons.Style reads decoration:rounding from hyprctl and watches the
|
|
# theme name + rounded-corners toggle files for changes. There is no
|
|
# separate quickshell-menu.json to write anymore. This shim stays around
|
|
# so anyone still calling the old subcommand (or the dispatcher in
|
|
# omarchy-style-corners) doesn't error out.
|
|
|
|
case "${1:-toggle}" in
|
|
round|sharp|toggle) exit 0 ;;
|
|
*)
|
|
echo "Usage: omarchy-style-corners-quickshell [toggle|sharp|round]" >&2
|
|
exit 1
|
|
;;
|
|
esac
|