mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
14 lines
455 B
Bash
Executable File
14 lines
455 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BLUR_PASSES=$(hyprctl -j getoption decoration:blur_passes | jaq ".int")
|
|
|
|
if [ "${BLUR_PASSES}" == "3" ]; then
|
|
hyprctl keyword decoration:blur_size 3
|
|
hyprctl keyword decoration:blur_passes 1
|
|
notify-send -i "$HOME/.config/hypr/mako/icons/hyprland.png" "Blur" "Normal"
|
|
else
|
|
hyprctl keyword decoration:blur_size 7
|
|
hyprctl keyword decoration:blur_passes 3
|
|
notify-send -i "$HOME/.config/hypr/mako/icons/hyprland.png" "Blur" "Glassy"
|
|
fi
|