mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
16 lines
533 B
Python
16 lines
533 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
from bauh.api.constants import CONFIG_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)
|
|
|
|
|
|
def get_icon_path() -> str:
|
|
return resource.get_path('img/appimage.svg', ROOT_DIR)
|