1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-30 03:51:15 +01:00
Files
dotfiles/.local/bin/tools/statusbar/cpu

8 lines
162 B
Bash
Executable File

#!/bin/sh
if [ "$1" = "amd" ]; then
sensors | awk '/Tctl/ {print " " $2}'
elif [ "$1" = "intel" ]; then
sensors | awk '/Core 0/ {print " " $3}'
fi