Switch to GNU stow
This commit is contained in:
parent
a2605c4254
commit
d34cecb27e
137 changed files with 39244 additions and 141 deletions
18
scripts/.local/bin/polybar-launch
Executable file
18
scripts/.local/bin/polybar-launch
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Terminate already running bar instances
|
||||
killall -q polybar
|
||||
|
||||
# Wait until the processes have been shut down
|
||||
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
||||
|
||||
startbars() {
|
||||
for bar in "$@"; do
|
||||
local logfile="/tmp/polybar-$bar.log"
|
||||
printf -- "---\npolybar: %s starting...\n---\n" "$bar" | tee -a "$logfile"
|
||||
polybar "$bar" >>"$logfile" 2>&1 &
|
||||
done
|
||||
}
|
||||
|
||||
startbars "$@"
|
||||
echo "Polybars launched..."
|
||||
Loading…
Add table
Add a link
Reference in a new issue