summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurie <bluepeppers@archlinux.us>2010-01-25 21:08:24 +0000
committerLaurie <bluepeppers@archlinux.us>2010-01-25 21:08:24 +0000
commita5843b1173d2ea66e41e13255812e589e6808247 (patch)
treecc70e3462340f2f3d2262440b4af5c47a40ea5b2
parent6588f23c1064d58ad8699e0fb821614c7ed73586 (diff)
Added ScrotWM support
-rwxr-xr-x[-rw-r--r--]archey7
1 files changed, 4 insertions, 3 deletions
diff --git a/archey b/archey
index 85a1c52..c5b340b 100644..100755
--- a/archey
+++ b/archey
@@ -82,7 +82,8 @@ wm_dict = {'awesome': 'Awesome',
'wmaker': 'Window Maker',
'wmii': 'wmii',
'xfwm4': 'Xfwm',
- 'xmonad': 'xmonad'}
+ 'xmonad': 'xmonad',
+ 'scrotwm': 'ScrotWM'}
sh_dict = {'zsh': 'Z-Shell',
'bash': 'Bash',
@@ -137,8 +138,8 @@ def screenshot():
def coretemp_display():
tempinfo = Popen(['sensors', 'coretemp-*'], stdout=PIPE).communicate()[0].split('\n')[2::4]
temps = ''
- orange = '\x1b[1;31m'
- red = '\x1b[1;33m'
+ orange = '\x1b[1;33m'
+ red = '\x1b[1;31m'
blue = '\x1b[1;34m'
for line in tempinfo:
value = line.split(':')[1].replace(' ','').split('(')[0]