mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 09:53:13 +00:00
16 lines
371 B
Bash
Executable file
16 lines
371 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#65737E} #"
|
|
elif [ "$temp" -ge 5000 ]; then
|
|
echo "%{F#8FA1B3} #"
|
|
elif [ "$temp" -ge 4000 ]; then
|
|
echo "%{F#EBCB8B} #"
|
|
else
|
|
echo "%{F#D08770} #"
|
|
fi
|
|
fi
|