1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-18 18:07:45 +01:00

8 lines
212 B
Plaintext
Raw Normal View History

2019-09-07 17:42:18 +02:00
#!/bin/sh
if [ "$1" = "amd" ]; then
2023-10-16 23:49:04 +02:00
sensors | awk '/Tctl/ {print "^b#282828^^c#dfdfdf^  ^d^ " $2}'
elif [ "$1" = "intel" ]; then
2023-10-16 23:49:04 +02:00
sensors | awk '/Core 0/ {print "^b#282828^^c#dfdfdf^  ^d^ " $3}'
fi