14 lines
354 B
Bash
Executable File
14 lines
354 B
Bash
Executable File
#!/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 "Normal blur"
|
|
else
|
|
hyprctl keyword decoration:blur:size 7.8
|
|
hyprctl keyword decoration:blur:passes 2
|
|
notify-send "Glassmorphism activated"
|
|
fi
|