14 lines
238 B
Python
Executable file
14 lines
238 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
import socket
|
|
|
|
hostname = socket.gethostname().split('.')[0]
|
|
|
|
s = 0
|
|
for c in hostname:
|
|
s = s + ord(c)
|
|
|
|
color = str(1 + s % 14).rjust(3, '0')
|
|
print('$FG[{}]'.format(color))
|