Consolidates bar-settings into a single 'settings' plugin with sidebar categories: Defaults, Style, Bar, System, Plugins. Updates supporting commands (omarchy-launch-settings, omarchy-style-corners-quickshell, omarchy-theme-list-with-previews, omarchy-hyprland-monitor-scaling-set) and refreshes sidebar glyphs to Nerd Font icons.
22 lines
661 B
Bash
Executable File
22 lines
661 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Set Hyprland, Hyprlock, Mako, Walker, and Quickshell 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-hyprlock "$1"
|
|
omarchy-style-corners-mako "$1"
|
|
omarchy-style-corners-walker "$1"
|
|
omarchy-style-corners-quickshell "$1"
|
|
|
|
case $1 in
|
|
sharp) omarchy-notification-send "Sharp corners enabled" -g ;;
|
|
round) omarchy-notification-send "Round corners enabled" -g ;;
|
|
esac
|