Gave the tmux status bar some pimp juice!

This commit is contained in:
Nick Nisi
2012-06-10 10:33:30 -05:00
parent 740edba963
commit fec5a3aa17
2 changed files with 55 additions and 37 deletions

View File

@@ -1,6 +1,11 @@
####################
# functions
####################
# print available colors and their numbers
function colours() {
for i in {0..255}; do
printf "\x1b[38;5;${i}mcolours${i}"
printf "\x1b[38;5;${i}m colour${i}"
if (( $i % 5 == 0 )); then
printf "\n"
else