9 lines
313 B
Bash
Executable File
9 lines
313 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Toggle single-window square aspect ratio.
|
|
|
|
case $(omarchy-hyprland-toggle single-window-aspect-ratio) in
|
|
on) omarchy-notification-send -g "Enable single-window square aspect ratio" ;;
|
|
off) omarchy-notification-send -g "Disable single-window square aspect ratio" ;;
|
|
esac
|