mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
14 lines
214 B
Text
14 lines
214 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Prints out the screen color temperature
|
||
|
# Requires the redshift package
|
||
|
|
||
|
PREFIX=''
|
||
|
|
||
|
get_redshift()
|
||
|
{
|
||
|
echo "$PREFIX$(redshift -p 2> /dev/null | grep "temp" | awk '{print $3}')"
|
||
|
}
|
||
|
|
||
|
get_redshift
|