summaryrefslogtreecommitdiff
path: root/sigdwmb
blob: b21a9911d09f2a5b8c83a02aca1aa301e8450c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
BLOCKS=`grep '^\s*{"' ~/.local/src/dwmblocks/config.h | cut -d'"' -f4 | uniq`
for i in $@; do
  if `echo "$BLOCKS" | grep "$i" >/dev/null`; then
    echo "$i"
    pkill -RTMIN+`grep "$i" ~/.local/src/dwmblocks/config.h | sed -e 's/^\s*{".*",\s*[0-9]*,\s*//' -e 's/},$//' | head -1` dwmblocks
  elif [ "$i" = "all" ]; then
    for j in $BLOCKS; do
      echo "$j"
      pkill -RTMIN+`grep "$j" ~/.local/src/dwmblocks/config.h | sed -e 's/^\s*{".*",\s*[0-9]*,\s*//' -e 's/},$//' | head -1` dwmblocks
    done
  fi
done