8 lines
217 B
Bash
Executable File
8 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. "/home/kevin/.cache/wal/colors.sh"
|
|
|
|
temps="$(sensors | rg 'temp1:.*' | awk '{ print $2 }' | rg -o '\d{2}' | \
|
|
sort -r | sed 's/$/°C/' | tr '\n' ' ' | xargs)"
|
|
printf "%s\n\n%s\n" "$temps" "$color7"
|