Se me ocurrió la siguiente función de shell:
hash_string256() {
# Hash $1 into a number
hash_value=$(printf "%s" "$1" | md5sum |tr -d " -"| tr "a-f" "A-F")
# Add the hash with $2 and modulo 256 the result
# if $2 == "" it is 0
printf "ibase=16; (%s + %X) %% 100\n" $hash_value "$2" | bc
}
Esta función se puede usar así (los resultados son verdaderos si $HOST
es así LOL
):
$hash_string256 $HOST
113
$hash_string256 $HOST 127
240
Para conectarlo tmux
puede usar un script que se inicia y configura tmux
.
#!/bin/sh
SESSION=$USER
hash_string256() {
hash_value=$(printf "%s" "$1" | md5sum |tr -d " -"| tr "a-f" "A-F")
printf "ibase=16; (%s + %X) %% 100 \n" $hash_value "$2" | bc
}
tmux -2 new-session -d -s $SESSION
tmux set -g status-fg colour$(hash_string256 $HOST)
tmux set -g status-bg colour$(hash_string256 $HOST 127)
# Attach to session
tmux -2 attach-session -t $SESSION
Para el nombre de host LOL
, establecería el status-fg
to colour113
y status-bg
to colour240
. El número 127 $(hash_string256 $HOST 127)
está allí, por lo que el fondo no será el mismo que el color de primer plano y estará muy separado el uno del otro.
Para ninguno de los sistemas GNU
Si su sistema tiene en md5
lugar de md5sum
la línea
hash_value=$(printf "%s" "$1" | md5sum |tr -d " -"| tr "a-f" "A-F")
puede ser reemplazado con
hash_value=$(printf "%s" "$1" | md5 | tr "a-f" "A-F")
.tmux.conf
obtuve"cut -c3- ~/.tmux.conf | bash -s apply_configuration" returned 1
. ¡Sin embargo, mi barra de estado se volvió roja!