Replace --custom-field, --kb-accept, and --kb-custom CLI flags with a YAML config file at $XDG_CONFIG_HOME/bw-menu/config.yaml. The config maps rofi key names to vault fields (e.g. Return: password), making keybinding configuration simpler and more intuitive.
13 lines
226 B
TOML
13 lines
226 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "bw-menu"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pyyaml"]
|
|
|
|
[project.scripts]
|
|
bw-menu = "bw_menu.__main__:main"
|