mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
import os
|
|
from pathlib import Path
|
|
from typing import Optional
|
|
|
|
from bauh.api.constants import CONFIG_PATH, CACHE_PATH
|
|
from bauh.commons import resource
|
|
|
|
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
LOCAL_PATH = '{}/.local/share/bauh/appimage'.format(str(Path.home()))
|
|
INSTALLATION_PATH = LOCAL_PATH + '/installed/'
|
|
SUGGESTIONS_FILE = 'https://raw.githubusercontent.com/vinifmor/bauh-files/master/appimage/suggestions.txt'
|
|
CONFIG_FILE = '{}/appimage.yml'.format(CONFIG_PATH)
|
|
CONFIG_DIR = '{}/appimage'.format(CONFIG_PATH)
|
|
UPDATES_IGNORED_FILE = '{}/updates_ignored.txt'.format(CONFIG_DIR)
|
|
SYMLINKS_DIR = '{}/.local/bin'.format(str(Path.home()))
|
|
URL_COMPRESSED_DATABASES = 'https://raw.githubusercontent.com/vinifmor/bauh-files/master/appimage/dbs.tar.gz'
|
|
DATABASES_DIR = '{}/appimage'.format(CACHE_PATH)
|
|
DATABASE_APPS_FILE = '{}/apps.db'.format(DATABASES_DIR)
|
|
DATABASE_RELEASES_FILE = '{}/releases.db'.format(DATABASES_DIR)
|
|
DATABASES_TS_FILE = '{}/dbs.ts'.format(DATABASES_DIR)
|
|
DESKTOP_ENTRIES_PATH = '{}/.local/share/applications'.format(str(Path.home()))
|
|
|
|
|
|
def get_icon_path() -> str:
|
|
return resource.get_path('img/appimage.svg', ROOT_DIR)
|
|
|
|
|
|
def get_default_manual_installation_file_dir() -> Optional[str]:
|
|
default_path = '{}/Downloads'.format(str(Path.home()))
|
|
return default_path if os.path.isdir(default_path) else None
|