mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2025-04-19 17:02:07 +02:00
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pkill polybar
|
|
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
|
MONITOR=$m polybar --reload main &
|
|
done
|