summaryrefslogtreecommitdiffstats
path: root/base/vars.py
blob: 232432bcc6475bbffba0f30688efd83acc73c85c (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', 'fedora')
DEVSHELL_DIR = join(expanduser('~'), '.devshell')

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