nixos-config/modules/home/scripts/toogle_blur.sh

8 lines
229 B
Bash
Raw Normal View History

2023-11-12 11:58:49 +01:00
#!/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