public
Description: A desktop widget that display informations about CPU speed, temperature and so on through OSD
Homepage:
Clone URL: git://github.com/kratorius/osdwidget.git
osdwidget / settings.py.tmpl
100644 35 lines (22 sloc) 0.721 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Modules
 
widgets = [ 'gmail', 'batt', 'temp', 'cpu' ]
 
# Battery info file (we need this so we can know if the battery is
# inserted or it isn't)
BAT_INFO = "/proc/acpi/battery/BAT0/info"
 
# Battery state file (we get remaining capacity from this file)
BAT_STATE = "/proc/acpi/battery/BAT0/state"
 
# CPU Temperature file
TEMPERATURE = "/proc/acpi/thermal_zone/THM0/temperature"
 
# CPUinfo
CPUSPEED = "/proc/cpuinfo"
 
# The font will be using
FONT_FACE = "-*-fixed-medium-r-*-*-12-*-*-*-*-*-*-*"
 
# Update interval
INTERVAL = 5
 
 
# Gmail options
 
# Gmail username
GMAIL_USER = 'gmailaccount@gmail.com'
 
# Gmail password
GMAIL_PASS = 'yourgmailpassword'
 
# Check emails every X minutes
GMAIL_CHECK_INTERVAL = 5 # minutes