blob: d3c6420f44f6524172101ef7c7645f1d00e74e84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
cat <<'EOF'
>>> Optional setup:
Launch the app once - the first-run wizard surfaces every optional step.
Or from terminal:
linux-sensor-tray-setup doctor (check current state)
sudo linux-sensor-tray-setup zenpower (AMD: extra Vcore/V SoC/per-CCD telemetry)
sudo linux-sensor-tray-setup polkit-rule (always-on lshw enrichment)
sudo linux-sensor-tray-setup install-deps lshw polkit
See: https://github.com/Mindsaver/linux-sensor-tray#zenpower-and-k10temp
EOF
}
post_upgrade() {
post_install
}
|