Files
shed/glasshouse-desktop/home/scripts/scripts/toggle_blur.sh
2024-10-10 03:53:44 -04:00

8 lines
229 B
Bash
Executable File

#!/usr/bin/env bash
if hyprctl getoption decoration:blur:enabled | grep "int: 1" >/dev/null ; then
hyprctl keyword decoration:blur:enabled false >/dev/null
else
hyprctl keyword decoration:blur:enabled true >/dev/null
fi