Dotfiles-dwm/dwmbar/modules/redshift
2024-06-02 14:02:06 +03:00

14 lines
214 B
Bash
Executable File

#!/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