nixos-config/modules/home/scripts/scripts/toggle_blur.sh
Frost-Phoenix e589e47040 fix typo
2024-01-13 16:05:38 +01: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