mirror of
https://gitlab.com/briannafoxwell/dotfiles.git
synced 2025-07-02 01:02:04 +00:00
6 lines
123 B
Bash
6 lines
123 B
Bash
#!/bin/bash
|
|
xrandr --query | grep ' connected' | cut -d' ' -f1 | while read m; do
|
|
MONITOR=$m polybar -r bar &
|
|
sleep 1
|
|
done
|