mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-05-09 17:18:36 +00:00
Add a quick script which starts lemonbar on all monitors
This commit is contained in:
parent
0d7a671db3
commit
7c5b8710fd
1 changed files with 8 additions and 0 deletions
8
home/.local/bin/scripts/gui/bspwm/launchlemon
Executable file
8
home/.local/bin/scripts/gui/bspwm/launchlemon
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/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
|
Loading…
Add table
Reference in a new issue