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

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)