如何使用 hddtemp 编写 lua 脚本以便结果显示在条形图中

如何使用 hddtemp 编写 lua 脚本以便结果显示在条形图中

在我的 lua 条形图脚本中我有

name="hddtemp",
arg="execi 100 hddtemp /dev/sda2 |cut -c33-40",

我只想以条形图显示温度。我上面写的内容显示一个空的条形图。它还会在终端中显示此消息。

conky: reading exec value failed (perhaps it's not the correct format?)
conky: could not connect to hddtemp host

有人能帮我指出正确的方向吗,这样我就可以写出正确的脚本名称和参数,以便在 lua 条形图中显示 hddtemp。谢谢。

答案1

名称=“execi 10”,arg=“hddtemp /dev/sda2 -n”,最大值=100,警报=80,

写入此内容将允许人们在条形图中读取 hddtemp。只需重写 sda2 以使其与您的驱动器号匹配。

相关内容