5 lines
111 B
Bash
Executable File
5 lines
111 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
|
MONITOR=$m polybar main &
|
|
done
|