fucking mess

This commit is contained in:
2021-09-15 08:37:45 +02:00
parent 96207fbd9d
commit 4572645217
27 changed files with 12181 additions and 0 deletions

23
tmux/.tmux/health-indicator.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
cnormal1='colour31'
cnormal2='white'
cprefix='colour238'
bnormal='colour31'
bprefix='colour208'
normal='●'
prefix='▲'
if [ $1 -eq 1 ]; then
printf "#[fg=$cprefix,bg=$bprefix] $prefix "
else
if [ $(($(date +%s) % 2)) -eq 0 ]; then
printf "#[fg=$cnormal1,bg=$bnormal] $normal "
else
printf "#[fg=$cnormal2,bg=$bnormal] $normal "
fi
fi
#printf "#[fg=white,bg=red] $(date +%N) $@"
printf "#[fg=white]"