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)