correct tmux theme script and update colors

* update colors and correct variable usage in tmux theme file
* update colors in battery indicator script
This commit is contained in:
Nick Nisi
2014-04-08 23:16:51 -05:00
parent 35c0602358
commit d114261894
2 changed files with 14 additions and 12 deletions

View File

@@ -17,10 +17,10 @@ if [[ $charged_slots -gt 3 ]]; then
charged_slots=3
fi
echo -n '#[fg=red]'
echo -n '#[fg=colour196]'
for i in `seq 1 $charged_slots`; do echo -n "$HEART"; done
if [[ $charged_slots -lt 3 ]]; then
echo -n '#[fg=white]'
echo -n '#[fg=colour254]'
for i in `seq 1 $(echo "3-$charged_slots" | bc)`; do echo -n "$HEART"; done
fi