mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-05-03 06:48:36 +00:00
8 lines
207 B
Bash
Executable file
8 lines
207 B
Bash
Executable file
#!/bin/sh
|
|
# Runs lemonbar-launch for every connected monitor
|
|
|
|
MONITORS="$(bspc query -M --names)"
|
|
|
|
for monitor in $(echo "$MONITORS") ; do
|
|
$HOME/.config/lemonbar/lemonbar-launch "$monitor" & disown
|
|
done
|