- User avatar and username display above action buttons - Panel on focused monitor, wallpaper overlay on all others - Keyboard exclusive on focused monitor, Escape to dismiss - Lock action calls moonlock directly - GTK theme colors (@theme_*) for consistent styling - Round action buttons, translucent card backgrounds - 22px icon lookup rendered at 64px (matches moonlock icons) - PKGBUILD for Arch Linux packaging - 63 tests passing
31 lines
578 B
TOML
31 lines
578 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "moonset"
|
|
version = "0.2.0"
|
|
description = "Wayland session power menu with GTK4 and Layer Shell"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
dependencies = [
|
|
"PyGObject>=3.46",
|
|
]
|
|
|
|
[project.scripts]
|
|
moonset = "moonset.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/moonset"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|
|
|
|
[tool.pyright]
|
|
pythonVersion = "3.11"
|
|
pythonPlatform = "Linux"
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
typeCheckingMode = "standard"
|