added bin/ scripts, created cdg

This commit is contained in:
2015-05-27 20:24:12 -07:00
parent 50228d94ae
commit 8f6dfcca30
9 changed files with 54 additions and 0 deletions

13
bin/myi3 Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
i3status | while :
do
read line
MPC=`mpc current`
if [[ -z $MPC ]]
then
echo "$line" || exit 1
else
echo "Playing: $MPC | $line" || exit 1
fi
done