aboutsummaryrefslogtreecommitdiff
path: root/waybar/custom_modules/custom-gpu-lite.sh
blob: d2821c14abfd84221bb63b8876cf11f1b84fb65b (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

raw_temp=$(cat /sys/class/drm/card0/device/hwmon/hwmon5/temp1_input)
temperature=$(($raw_temp/1000))
deviceinfo=$(glxinfo -B | grep 'Device:' | sed 's/^.*: //')
driverinfo=$(glxinfo -B | grep "OpenGL version")

echo '{"text": "  '$temperature'°C", "class": "custom-gpu", "tooltip": "<b>'$deviceinfo'</b>\n'$driverinfo'"}'