summaryrefslogtreecommitdiffstats
path: root/base/vars.py
blob: 5eddfeb046163e685ba6057fa2bc23e479348cca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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']

orig_src_dir = '_orig'
haskell_compiler = 'ghc'