10321a0d21
remove .local/bin/dwmbar add .local/bin/statusbar scripts directory update .profile ($PATH) update .xprofile (dwmblocks at startup)
17 lines
437 B
Bash
Executable File
17 lines
437 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
######################################################################
|
|
# @author : swytch (swytch@$HOSTNAME)
|
|
# @file : sb-mpdup
|
|
# @license : MIT
|
|
# @created : Saturday Feb 13, 2021 18:04:04 CET
|
|
#
|
|
# @description : update music block for dwmblocks
|
|
######################################################################
|
|
|
|
|
|
while : ; do
|
|
mpc idle >/dev/null && kill -39 $(pidof dwmblocks) || break
|
|
done
|
|
|