13 lines
306 B
Python
13 lines
306 B
Python
"""Shared filesystem locations. Works whether run from the repo or ~/.config."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent
|
|
STYLE_DIR = BASE_DIR / "style"
|
|
|
|
SCRIPTS_DIR = Path.home() / "Documents" / "Scripts"
|
|
|
|
APP_ID = "eu.abdelbaki.orbitmenu"
|