mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-01 01:53:32 +01:00
15 lines
376 B
Bash
Executable file
15 lines
376 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(pgrep -x redshift)" ]; then
|
|
temp=$(redshift -p 2> /dev/null | grep temp | cut -d ":" -f 2 | tr -dc "[:digit:]")
|
|
|
|
if [ -z "$temp" ]; then
|
|
echo "%{F#666} ﯧ"
|
|
elif [ "$temp" -ge 5000 ]; then
|
|
echo "%{F#ffeeee} ﯦ"
|
|
elif [ "$temp" -ge 4000 ]; then
|
|
echo "%{F#ffaaaa} ﯦ"
|
|
else
|
|
echo "%{F#ff0000} ﯦ"
|
|
fi
|
|
fi
|