From c00b14c75468f7c91cb0e89de20d8433fba7c917 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Fri, 6 Jun 2025 23:42:59 +0200 Subject: update --- pw-cputemp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 pw-cputemp (limited to 'pw-cputemp') diff --git a/pw-cputemp b/pw-cputemp new file mode 100755 index 0000000..eda3871 --- /dev/null +++ b/pw-cputemp @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# requires joypixels font in dwm config.def.h + +CPU_TEMP=$(sensors | awk ' + /^Tdie|^Package id|^Core 0|^CPU|^temp1/ { + gsub(/[+°C]/, ""); + for (i=1; i<=NF; i++) { + if ($i ~ /^[0-9]+(\.[0-9]+)?$/) { + gsub(/\..*/, "", $i); + print $i; + exit; + } + } + }') + +# Debug CPU temperature detection, if not found, return N/A +if [ -z "$CPU_TEMP" ]; then + # Try simpler pattern as fallback + CPU_TEMP=$(sensors | grep -E '^(Core 0|Package id 0|CPU)' | awk '{print $3}' | tr -d '+°C' | head -n1) +fi + +[ -z "$CPU_TEMP" ] && CPU_TEMP="N/A" + +# Send to bar +echo -e " 🌡️ $CPU_TEMP°C ┊" + -- cgit v1.2.3