mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-19 02:17:44 +01:00
8 lines
212 B
Bash
Executable File
8 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "amd" ]; then
|
|
sensors | awk '/Tctl/ {print "^b#282828^^c#dfdfdf^ ^d^ " $2}'
|
|
elif [ "$1" = "intel" ]; then
|
|
sensors | awk '/Core 0/ {print "^b#282828^^c#dfdfdf^ ^d^ " $3}'
|
|
fi
|