gitextract_6m5oxmcb/ ├── .gitignore ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── completions/ │ ├── _decman │ ├── decman.bash │ └── decman.fish ├── docs/ │ ├── README.md │ ├── aur.md │ ├── extras.md │ ├── flatpak.md │ ├── migrate-to-v1.md │ ├── pacman.md │ └── systemd.md ├── example/ │ ├── README.md │ ├── base.py │ ├── files/ │ │ ├── mkinitcpio.conf │ │ └── vimrc │ ├── kde.py │ ├── plugin/ │ │ ├── decman_plugin_example.py │ │ └── pyproject.toml │ └── source.py ├── plugins/ │ ├── decman-flatpak/ │ │ ├── pyproject.toml │ │ └── src/ │ │ └── decman/ │ │ └── plugins/ │ │ └── flatpak.py │ ├── decman-pacman/ │ │ ├── pyproject.toml │ │ ├── src/ │ │ │ └── decman/ │ │ │ └── plugins/ │ │ │ ├── aur/ │ │ │ │ ├── __init__.py │ │ │ │ ├── commands.py │ │ │ │ ├── error.py │ │ │ │ ├── fpm.py │ │ │ │ ├── package.py │ │ │ │ └── resolver.py │ │ │ └── pacman.py │ │ └── tests/ │ │ ├── test_decman_plugins_aur.py │ │ ├── test_decman_plugins_aur_package.py │ │ ├── test_decman_plugins_aur_resolver.py │ │ ├── test_decman_plugins_pacman.py │ │ ├── test_deep_orphan_removal.py │ │ └── test_fpm.py │ └── decman-systemd/ │ ├── pyproject.toml │ ├── src/ │ │ └── decman/ │ │ └── plugins/ │ │ └── systemd.py │ └── tests/ │ └── test_decman_plugins_systemd.py ├── pyproject.toml ├── src/ │ └── decman/ │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── core/ │ │ ├── __init__.py │ │ ├── command.py │ │ ├── error.py │ │ ├── file_manager.py │ │ ├── fs.py │ │ ├── module.py │ │ ├── output.py │ │ └── store.py │ ├── extras/ │ │ ├── __init__.py │ │ ├── gpg.py │ │ └── users.py │ ├── plugins/ │ │ └── __init__.py │ └── py.typed └── tests/ ├── test_decman_app.py ├── test_decman_core_command.py ├── test_decman_core_file_manager.py ├── test_decman_core_fs.py ├── test_decman_core_module.py ├── test_decman_core_output.py ├── test_decman_core_store.py ├── test_decman_init.py └── test_decman_plugins.py