feat(waybar): modules cpu-temp et disks portables par scripts
Remplace les modules natifs temperature (thermal-zone codé en dur) et disk (chemin fixe /) par des custom scripts auto-détectés. - cpu-temp.sh : détecte x86_pkg_temp / k10temp / coretemp via thermal_zone et hwmon, émet warning à 65° et critical à 80° - disks.sh : liste tous les FS montés réels, exclut snap/tmpfs/efi, affiche icône selon le point de montage, tooltip détaillé CSS : styles warning + hover ajoutés pour les deux modules
This commit is contained in:
43
INSTALL/configs/waybar/scripts/cpu-temp.sh
Executable file
43
INSTALL/configs/waybar/scripts/cpu-temp.sh
Executable file
@@ -0,0 +1,43 @@
|
||||
#!/usr/bin/env bash
|
||||
# cpu-temp.sh — température CPU auto-détection → JSON waybar
|
||||
# Priorité 1 : thermal zone x86_pkg_temp (Intel) ou k10temp (AMD)
|
||||
# Priorité 2 : hwmon coretemp / k10temp / zenpower
|
||||
# Retourne vide si aucune source trouvée
|
||||
|
||||
emit() {
|
||||
local temp=$1
|
||||
local cls="normal"
|
||||
(( temp >= 80 )) && cls="critical"
|
||||
(( temp >= 65 && temp < 80 )) && cls="warning"
|
||||
printf '{"text":" %d°","tooltip":"CPU %d°C","class":"%s","percentage":%d}\n' \
|
||||
"$temp" "$temp" "$cls" "$temp"
|
||||
exit 0
|
||||
}
|
||||
|
||||
# Priorité 1 — thermal_zone x86_pkg_temp (Intel) / TCPU / k10temp (AMD)
|
||||
for zone in /sys/class/thermal/thermal_zone*/; do
|
||||
zone_type=$(cat "${zone}type" 2>/dev/null) || continue
|
||||
case "$zone_type" in
|
||||
x86_pkg_temp|k10temp|TCPU|cpu_thermal)
|
||||
temp_raw=$(cat "${zone}temp" 2>/dev/null) || continue
|
||||
emit $(( temp_raw / 1000 ))
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Priorité 2 — hwmon coretemp (Intel desktop) ou k10temp (AMD)
|
||||
for hw in /sys/class/hwmon/hwmon*/; do
|
||||
hw_name=$(cat "${hw}name" 2>/dev/null) || continue
|
||||
case "$hw_name" in
|
||||
coretemp|k10temp|zenpower|amd_energy)
|
||||
for f in "${hw}temp1_input" "${hw}temp2_input"; do
|
||||
[[ -r "$f" ]] || continue
|
||||
temp_raw=$(cat "$f" 2>/dev/null) || continue
|
||||
emit $(( temp_raw / 1000 ))
|
||||
done
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Aucune source — module masqué
|
||||
printf '{"text":"","class":"unavailable"}\n'
|
||||
58
INSTALL/configs/waybar/scripts/disks.sh
Executable file
58
INSTALL/configs/waybar/scripts/disks.sh
Executable file
@@ -0,0 +1,58 @@
|
||||
#!/usr/bin/env bash
|
||||
# disks.sh — liste les vrais systèmes de fichiers montés → JSON waybar
|
||||
# Exclut tmpfs, devtmpfs, squashfs (snap), overlay, efi, etc.
|
||||
|
||||
TEXT=""
|
||||
TOOLTIP=" Disques\n"
|
||||
|
||||
while IFS= read -r line; do
|
||||
fs=$(awk '{print $1}' <<< "$line")
|
||||
size=$(awk '{print $2}' <<< "$line")
|
||||
used=$(awk '{print $3}' <<< "$line")
|
||||
avail=$(awk '{print $4}' <<< "$line")
|
||||
pct=$(awk '{print $5}' <<< "$line")
|
||||
mnt=$(awk '{print $6}' <<< "$line")
|
||||
|
||||
# Exclure mounts sans intérêt
|
||||
[[ "$mnt" == /snap/* ]] && continue
|
||||
[[ "$mnt" == /boot/efi ]] && continue
|
||||
[[ "$mnt" == /boot ]] && continue
|
||||
[[ "$mnt" == /recovery ]] && continue
|
||||
[[ "$mnt" == /run* ]] && continue
|
||||
[[ "$mnt" == /sys* ]] && continue
|
||||
[[ "$mnt" == /proc* ]] && continue
|
||||
[[ "$mnt" == /dev* ]] && continue
|
||||
|
||||
# Icône selon le point de montage
|
||||
case "$mnt" in
|
||||
/) icon="" ;;
|
||||
/home) icon="" ;;
|
||||
/data*) icon="" ;;
|
||||
/media*) icon="" ;;
|
||||
/mnt*) icon="" ;;
|
||||
*) icon="" ;;
|
||||
esac
|
||||
|
||||
# Texte compact : icône + montage court + espace utilisé
|
||||
label=$(basename "$mnt")
|
||||
[[ "$mnt" == "/" ]] && label="/"
|
||||
[[ -n "$TEXT" ]] && TEXT+=" "
|
||||
TEXT+="${icon} ${label}: ${used}"
|
||||
|
||||
TOOLTIP+="${icon} ${mnt}\n Utilisé : ${used} / ${size} (${pct})\n Libre : ${avail}\n"
|
||||
|
||||
done < <(df -hP --exclude-type=tmpfs \
|
||||
--exclude-type=devtmpfs \
|
||||
--exclude-type=squashfs \
|
||||
--exclude-type=overlay \
|
||||
--exclude-type=fuse.portal \
|
||||
--exclude-type=efivarfs \
|
||||
2>/dev/null | tail -n +2 | sort -k6)
|
||||
|
||||
if [[ -z "$TEXT" ]]; then
|
||||
printf '{"text":" N/A","tooltip":"Aucun disque détecté","class":"unavailable"}\n'
|
||||
else
|
||||
# Échapper uniquement les guillemets pour JSON (\n reste tel quel = saut de ligne)
|
||||
TOOLTIP_JSON=$(printf '%s' "$TOOLTIP" | sed 's/"/\\"/g')
|
||||
printf '{"text":"%s","tooltip":"%s"}\n' "$TEXT" "$TOOLTIP_JSON"
|
||||
fi
|
||||
Reference in New Issue
Block a user