mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
14 lines
340 B
Bash
14 lines
340 B
Bash
#!/bin/bash
|
|
|
|
STATE=$(hyprctl -j getoption decoration:blur:passes | jq ".int")
|
|
|
|
if [ "${STATE}" == "2" ]; then
|
|
hyprctl keyword decoration:blur:size 3
|
|
hyprctl keyword decoration:blur:passes 1
|
|
notify-send "Less blur"
|
|
else
|
|
hyprctl keyword decoration:blur:size 7.8
|
|
hyprctl keyword decoration:blur:passes 2
|
|
notify-send "Normal blur"
|
|
fi
|