Files
bearhub/bauh/api/constants.py
Vinícius Moreira 01a60ea686 0.9.0
2020-04-13 11:49:28 -03:00

8 lines
295 B
Python

import os
from pathlib import Path
CACHE_PATH = '{}/.cache/bauh'.format(str(Path.home()))
CONFIG_PATH = '{}/.config/bauh'.format(str(Path.home()))
DESKTOP_ENTRIES_DIR = '{}/.local/share/applications'.format(str(Path.home()))
TEMP_DIR = '/tmp/bauh{}'.format('_root' if os.getuid() == 0 else '')