summaryrefslogtreecommitdiffstats
path: root/base/vars.py
blob: 1e8ec2063c078ae1b2a9ced9c5c81a2843862f23 (plain)
1
2
3
4
5
6
7
8
9
10
from os.path import join, expanduser

__version__ = '0.0.1'
__description__ = 'A shell for hacking on the Fedora project'

FEDORA_DIR = join(expanduser('~'), 'code')
DEVSHELL_DIR = join(expanduser('~'), '.devshell')

header = lambda x: "%s %s %s" % ('=' * 2, x, '=' * (76 - len(x)))
prompt = ['\033[34;1mfedora\033[0m']