summaryrefslogtreecommitdiff
path: root/i3/status.sh
diff options
context:
space:
mode:
authorTom Barrett <spalf0@gmail.com>2019-08-14 08:02:52 -0500
committerdwm <dwm@dwm>2019-08-14 09:32:48 -0500
commit43e6d79bf47294ef37e7401c4f63915b92635bf5 (patch)
tree51ac98d65e2f22fd2dd4e2bd198f535ede5001c8 /i3/status.sh
parent583211851c839b2729888edf319c63d31054cb7b (diff)
using dwm and fish
Diffstat (limited to 'i3/status.sh')
-rw-r--r--i3/status.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/i3/status.sh b/i3/status.sh
deleted file mode 100644
index ce3c08a..0000000
--- a/i3/status.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-# shell script to prepend i3status with more stuff
-
-i3status | while :
-do
- read line
- MPCSTAT=`mpc | grep -v '^volume:'`
- if [ -z "${MPCSTAT}" ]; then
- echo "$line" || exit 1
- else
- MPCSTAT=`echo "${MPCSTAT}" | sed 's, *, ,g; 1h;1d;2G' | paste -d' ' -s -`
- echo "${MPCSTAT} | $line" || exit 1
- fi
-done
-
-