[feature][flatpak] able to ignore flatpak updates

This commit is contained in:
Vinícius Moreira
2020-05-18 18:20:31 -03:00
parent cca98602e6
commit ab8a0aaaef
7 changed files with 82 additions and 12 deletions

View File

@@ -1,6 +1,9 @@
import os
from pathlib import Path
from bauh.api.constants import CONFIG_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())
CONFIG_FILE = '{}/flatpak.yml'.format(CONFIG_PATH)
CONFIG_DIR = '{}/flatpak'.format(CONFIG_PATH)
UPDATES_IGNORED_FILE = '{}/updates_ignored.txt'.format(CONFIG_DIR)