summaryrefslogtreecommitdiff
path: root/archey
blob: c5b340b4bae1ae8e6209ac45895d476cb54805de (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
#!/usr/bin/env python
#
# archey [version 0.1-7]
#
# Maintained by Melik Manukyan <melik@archlinux.us>
# Distributed under the terms of the GNU General Public License v3.
# See http://www.gnu.org/licenses/gpl.txt for the full license text.
#
# Simple python script to display an Archlinux logo in ASCII art 
# Along with basic system information.

# Import libraries
import subprocess, optparse, re, sys
from subprocess import Popen, PIPE
from optparse import OptionParser
from getpass import getuser
from time import ctime, sleep

if sys.version_info[1] < 6:
	from future import with_statement

# Display [Comment/Uncomment to Enable/Disable information.]
display = [
	'os', # Display Operating System
	'hostname', # Display Machine Hostname
	'kernel',  # Display Kernel Version
#	'battery', # Display Battery Usage [Requires 'acpi']
	'uptime',  # Display System Uptime
	'coretemp', # Display System Core tempature
	'wm',  # Display Window Manager
	'de', # Display Desktop Environment
	'packages', # Display Number of Packages Installed
	'ram', # Display RAM Usage
	'cpu', # Display CPU Model
	'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
	'fs:/' # Display / Partition Usage
	]
# Array containing Values
result = []

# Options
if __name__=='__main__':
	parser = OptionParser(usage='%prog [-c COLOR] [-s, --screenshot]', description='To customize the info displayed on archey, edit "/usr/bin/archey" directly and look for the display array. Note: Archey can only allow up to 15 fields.')
	parser.add_option('-c',
		action='store', default='blue', type='choice', dest='color', choices=('black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white'), help='choose a color: black, red, green, yellow, blue, magenta, cyan, white [Default: blue]')
	parser.add_option('-s', '--screenshot',
		action='store_true', dest='screenshot', help='take a screenshot')
	(options, args) = parser.parse_args()

# Define colors
colorscheme = '%s' % options.color
colors = {'black': '0', 'red': '1', 'green': '2', 'yellow': '3', 'blue': '4', 'magenta': '5', 'cyan': '6', 'white': '7'}
for key in colors.keys():
	if key in colorscheme: colorcode = colors[key]				
color = '\x1b[1;3%sm' % colorcode
color2 = '\x1b[0;3%sm' % colorcode
clear = '\x1b[0m'

# Define processes for identifying Desktop Environmentss, Window Managers, Shells.
de_dict = {'gnome-session': 'GNOME',
           'ksmserver': 'KDE',
           'xfce-mcs-manager': 'Xfce 4',
           'xfconfd': 'Xfce 4.6'}
           
wm_dict = {'awesome': 'Awesome',
           'beryl': 'Beryl',
           'blackbox': 'Blackbox',
           'compiz': 'Compiz',
           'dwm': 'DWM',
           'enlightenment': 'Enlightenment',
           'fluxbox': 'Fluxbox',
           'fvwm': 'FVWM',
           'icewm': 'IceWM',
           'kwin': 'KWin',
           'metacity': 'Metacity',
	   'musca': 'Musca',
	   'openbox': 'Openbox',
           'pekwm': 'PekWM',
           'wmaker': 'Window Maker',
           'wmii': 'wmii',
           'xfwm4': 'Xfwm',
           'xmonad': 'xmonad',
	   'scrotwm': 'ScrotWM'}

sh_dict = {'zsh': 'Z-Shell',
           'bash': 'Bash',
           'dash': 'Dash',
           'fish': 'Fish',
           'ksh': 'Korn Shell',
           'jsh': 'Job control shell',
           'tcsh': 'The C Shell'}

os_dict = {'arch': 'Arch Linux',
	   'ubuntu': 'Ubuntu',
	   'debian': 'Debian'}

# Find running processes.
def xmonadfix(str):
	if re.compile("xmonad").match(str): return "xmonad"
	return str
p1 = Popen(['ps', '-u', getuser()], stdout=PIPE).communicate()[0].split('\n')
processes = map(xmonadfix, [process.split()[3] for process in p1 if process])
p1 = None

# Architecture
arch = Popen(['uname', '-m'], stdout=PIPE).communicate()[0].rstrip('\n')

# Print coloured key with normal value.
def output(key, value):
	output = '%s%s:%s %s' % (color, key, clear, value)
	result.append(output)


# RAM Function
def ram_display():
        raminfo = Popen(['free', '-m'], stdout=PIPE).communicate()[0].split('\n')
        ram = ''.join(filter(re.compile('M').search, raminfo)).split()
        used = int(ram[2]) - int(ram[5]) - int(ram[6])
        output ('RAM', '%s MB / %s MB' % (used, ram[1]))

# Screenshot Function 
screen = '%s' % options.screenshot
def screenshot():
	print 'Screenshotting in'
	list = range(1,6)
	list.reverse()
	for x in list:
		print '%s...' % x,
		sys.stdout.flush()
		sleep(1)
	subprocess.check_call(['import', '-window', 'root', ctime().replace(' ','_')+'.jpg'])
	print 'Say Cheese!'

# Core Temp Function
def coretemp_display():
	tempinfo = Popen(['sensors', 'coretemp-*'], stdout=PIPE).communicate()[0].split('\n')[2::4]
	temps = ''
	orange = '\x1b[1;33m'
	red = '\x1b[1;31m'
	blue = '\x1b[1;34m'
	for line in tempinfo:
		value =  line.split(':')[1].replace(' ','').split('(')[0]
		if int(value[1:3]) > 40:
			temps = temps + red + line.split(':')[1].replace(' ','').split('(')[0] + clear + ','
		elif int(value[1:3]) in range(31,41):
			temps = temps + orange + line.split(':')[1].replace(' ','').split('(')[0] + clear + ','
		elif int(value[1:3]) < 30:
			temps = temps + blue + line.split(':')[1].replace(' ','').split('(')[0] + clear + ','
	temps = temps[:-1]
	output ('Core Temp', temps)

# Operating System Function
def os_display():
	global os
	for key in os_dict:
		try:
			if eval('os_' + key)(): os = os_dict[key]
		except NameError:
			if os_lsb(key): os = os_dict[key]
	output('OS', os + ' ' + arch)

# Arch finding function
def os_arch():
	try:
		file = open('/etc/pacman.conf')
	except IOError:
		return False
	else:
		file.close()
		return True

# OS finding using lsb
def os_lsb(key):
	try:
		file = open('/etc/lsb-release')
		if not os[key] in file.readlines()[0]: raise IOError
	except IOError:
		return False
	else:
		file.close()
		return True

# Kernel Function
def kernel_display():
	kernel = Popen(['uname', '-r'], stdout=PIPE).communicate()[0].rstrip('\n')
	output ('Kernel', kernel)

# Hostname Function
def hostname_display():
	hostname = Popen(['uname', '-n'], stdout=PIPE).communicate()[0].rstrip('\n')
	output ('Hostname', hostname)

# CPU Function
def cpu_display():
        file = open('/proc/cpuinfo').readlines()
	cpuinfo = re.sub('  +', ' ', file[4].replace('model name\t: ', '').rstrip('\n'))
	output ('CPU', cpuinfo) 

# Uptime Function
def uptime_display():
	fuptime = int(open('/proc/uptime').read().split('.')[0])
	day = int(fuptime / 86400)
	fuptime = fuptime % 86400
	hour = int(fuptime / 3600)
	fuptime = fuptime % 3600
	minute = int(fuptime / 60)
	uptime = ''
	if day == 1:
		uptime += '%d day, ' % day
	if day > 1:
		uptime += '%d days, ' % day
	uptime += '%d:%02d' % (hour, minute)
	output('Uptime', uptime)

# Battery Function [Requires: acpi]
def battery_display(): 
	p1 = Popen(['acpi'], stdout=PIPE).communicate()[0].lstrip()
	battery = p1.split(' ')[3].rstrip('\n')
	output ('Battery', battery)

# Desktop Environment Function 
def de_display():
	de = 'None found'
	for key in de_dict.keys():
		if key in processes: de = de_dict[key]
	output ('DE', de)

# Window Manager Function
def wm_display():
	wm = 'None found'
	for key in wm_dict.keys():
		if key in processes: wm = wm_dict[key]
	output ('WM', wm)

# 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)

# Packages Function
def packages_display():
	p1 = Popen(['pacman', '-Q'], stdout=PIPE)
	p2 = Popen(['wc', '-l'], stdin=p1.stdout, stdout=PIPE)
	packages = p2.communicate()[0].rstrip('\n')
	output ('Packages', packages)

# File System Function
def fs_display(mount=''):
	p1 = Popen(['df', '-TPh', mount], stdout=PIPE).communicate()[0]
	used = [line for line in p1.split('\n') if line][1]
	used = used.split()[3]
	total = [line for line in p1.split('\n') if line][1]
	total = total.split()[2]
	type = [line for line in p1.split('\n') if line][1]
	type = type.split()[1]
	if mount == '/': mount = '/root'
	fs = mount.rpartition('/')[2].title() + " FS"
	part = '%s / %s (%s)' % (used, total, type)
   	output (fs, part)

# Run functions found in 'display' array.
for x in display:
	call = [arg for arg in x.split(':') if arg]
	funcname=call[0] + '_display'
	func=locals()[funcname]
	if len(call) > 1:
		func(arg)
	else:
		func()

# Array containing values.
result.extend(['']*(15 - len(display)))

colors = {'Arch Linux': (color, color, color, result[0], color, result[1], color, result[2], color, result[3], color, result[4], color, result[5], color, result[6], color, color2, color, result[7], color, color2, color, result[8], color, color2, result[9], color2, result[10], color2, result[11], color2, result[12], color2, result[13], color2, result[14], color2, color2, clear),
	  'Ubuntu': 'color3, color3, color2, color3, color2, color3, result[0], color, color2, color3, result[1], color, color2, color3, result[2], color, color2, result[3], color, color2, result[4], color, color2, result[5], color, color2, result[6], color2, color, color2, result[7], color2, color, color2, result[8], color2, color, result[9], color2, color, color3, result[10], color2, color, color3, result[11], color, color3, result[12], color, color3, result[13], color, color3, result[14], color, color3, color, color3, color, color, color3, color, color3, color, color3, color, color, color, clear'}

###### Result #######
logos = {'Arch Linux': '''%s 
%s               +                
%s               #                %s
%s              ###               %s
%s             #####              %s
%s             ######             %s
%s            ; #####;            %s
%s           +##.#####            %s
%s          +##########           %s
%s         ######%s#####%s##;         %s
%s        ###%s############%s+        %s
%s       #%s######   #######        %s
%s     .######;     ;###;`\".      %s
%s    .#######;     ;#####.       %s
%s    #########.   .########`     %s
%s   ######'           '######    %s
%s  ;####                 ####;   %s
%s  ##'                     '##   
%s #'                         `#  
%s ''',
	  'Ubuntu': '''
%s                              ++++++           
%s                             ++++++++          
%s                  ++++++++++ %s++++++++          
%s                ++++++++++++ %s++++++++          %s
%s             ++  %s++++++++++++ %s++++++           %s
%s           +++++  %s++++++++++++ %s^^^^            %s
%s          +++++++  %s+++++++++++++++++++         %s
%s         +++++++++          %s+++++++++++        %s
%s        ++++++++++            %s++++++++++       %s
%s        ++++++++               %s++++++++++      %s
%s  ++++++ %s++++++                 %s++++++++++     %s
%s ++++++++ %s+++++                  %s+++++++++     %s
%s +++++++++ %s++++                                %s
%s ++++++++ %s+++++                  %s+++++++++     %s
%s  ++++++ %s++++++                 %s++++++++++     %s
%s        ++++++++               %s++++++++++      %s
%s        +++++++++             %s++++++++++       %s
%s         +++++++++         %s++++++++++++        %s
%s          +++++++  %s+++++++++++++++++++         
%s           +++++  %s++++++++++++ %s,,,,            
%s             ++  %s++++++++++++ %s++++++           
%s                ++++++++++++ %s++++++++          
%s                  ++++++++++ %s++++++++           
%s                             ++++++++          
%s                              ++++++           
%s '''}

print logos[os] % colors[os]

if screen == 'True':
	screenshot()