summaryrefslogtreecommitdiff
path: root/sigdwmb
blob: b5942b0889b0d87ecc85e035a4366dbb23a5e530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/sbin/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