diff options
author | Melik Manukyan <melik@archlinux.us> | 2010-01-25 16:23:44 -0800 |
---|---|---|
committer | Melik Manukyan <melik@archlinux.us> | 2010-01-25 16:23:44 -0800 |
commit | 360fc44a2f66bb51414f642a9480cce6cdf840fc (patch) | |
tree | 120a21e25006775165c372b7ac5db6e87f2b79a1 | |
parent | 5ffb614ee83013c42f5170a7741a09227c75e17a (diff) |
cleanup
-rw-r--r-- | archey | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -28,7 +28,7 @@ display = [ 'packages', # Display Number of Packages Installed 'ram', # Display RAM Usage 'cpu', # Display CPU Model - 'sh', # Display Current Shell + 'sh', # Display Current Shell # 'fs:/boot', # Display /boot Partition Usage # 'fs:/home', # Display /home Partition Usage # 'fs:/MOUNT/POINT', # Display * Partition, Edit To Your Needs @@ -72,8 +72,8 @@ wm_dict = {'awesome': 'Awesome', 'icewm': 'IceWM', 'kwin': 'KWin', 'metacity': 'Metacity', - 'musca': 'Musca', - 'openbox': 'Openbox', + 'musca': 'Musca', + 'openbox': 'Openbox', 'pekwm': 'PekWM', 'scrotwm': 'ScrotWM', 'wmaker': 'Window Maker', @@ -172,7 +172,7 @@ def de_display(): de = 'None found' for key in de_dict.keys(): if key in processes: de = de_dict[key] - output ('Desktop Enviornment', de) + output ('Desktop Environment', de) # Window Manager Function def wm_display(): @@ -183,10 +183,10 @@ def wm_display(): # Shell Function def sh_display(): - sh = 'None found' - for key in processes: - if key in sh_dict.keys(): sh = sh_dict[key] - output ('Shell', sh) + sh = 'None found' + for key in processes: + if key in sh_dict.keys(): sh = sh_dict[key] + output ('Shell', sh) # Packages Function def packages_display(): |