#!/bin/bash
# called by sfwbar temp.widget (right-click)

gtkdialog-splash -close never -placement top -fontsize large -bg goldenrod -text " Please wait, processing... " &
XPID=$!
/usr/local/Pup-SysInfo/func -sysinfo_sensors
cat /tmp/sysinfo-sensors | sed -e 's/^Sensor/\nSensor/' -e 's/^ /• /g' | Xdialog --fixed-font --title "Sensor Status" --under-mouse --no-cancel --textbox "-" 20 120 2>/dev/null &
kill $XPID
