8 lines
138 B
Bash
Executable File
8 lines
138 B
Bash
Executable File
#!/usr/bin/env -S bash
|
|
|
|
monitors=$(hyprctl monitors -j | jq -r '.[].id')
|
|
|
|
for monitor in $monitors; do
|
|
ags toggle "bar_$monitor"
|
|
done
|