raidzero
Results
1
comments of
raidzero
I worked around this with a simple script: ``` #!/bin/bash groupSize=$(hyprctl activewindow -j | jq -r '.grouped | length') if [[ "$groupSize" > 0 ]]; then IN_GROUP=1 else IN_GROUP=0 fi...