[api] refactoring: 'constants' module renamed to 'paths'

This commit is contained in:
Vinicius Moreira
2021-11-23 17:53:05 -03:00
parent 70073a7bad
commit 8f9810bd69
16 changed files with 15 additions and 15 deletions

8
bauh/api/paths.py Normal file
View File

@@ -0,0 +1,8 @@
import os
from pathlib import Path
CACHE_PATH = '{}/.cache/bauh'.format(str(Path.home()))
CONFIG_PATH = '{}/.config/bauh'.format(str(Path.home()))
USER_THEMES_PATH = '{}/.local/share/bauh/themes'.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 '')