我使用tint2作爲面板,並且想要顯示cpu temp作爲系統托盤圖標,因爲沒有任何插件可以做到這一點,我只想知道無論如何,無論如何要做到這一點。劇本我至今是:系統托盤中的Python cpu溫度Linux
#! /usr/bin/python
import pygtk,os
pygtk.require("2.0")
import gtk
import egg.trayicon
t = egg.trayicon.TrayIcon("CPUTemp")
cpu_temp=os.popen('sensors | grep "temp1:" | cut -d+ -f2 | cut -c1-2').read()
t.add(gtk.Label(cpu_temp))
t.show_all()
gtk.main()
基本上,它周圍的工作第一次,但我也很喜歡它每5秒左右更新。任何幫助不勝感激。
Conky的Conky的Conky的;) – Orbit 2011-03-05 18:54:25