8 lines
110 B
Bash
Executable file
8 lines
110 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ x$(pidof dwmblocks) = "x" ]
|
|
then
|
|
dwmblocks &
|
|
else
|
|
echo 'dwmblocks is running, skipped.'
|
|
fi
|