mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
7 lines
260 B
Python
7 lines
260 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
SUGGESTIONS_FILE = 'https://raw.githubusercontent.com/vinifmor/bauh-files/master/flatpak/suggestions.txt'
|
|
CONFIG_FILE = '{}/.config/bauh/flatpak.yml'.format(Path.home())
|