blob: 79bdbb860d837bdf39b162a4d17f7793d3339e88 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
dim="$(hyprctl -j getoption decoration:dim_strength | jq -r '.float')"
if [ "$dim" = "0.08" ]
then
hyprctl keyword decoration:dim_strength 0.58
else
hyprctl keyword decoration:dim_strength 0.08
fi
|