├── .gitignore ├── .gitmodules ├── README.md ├── com.bitwarden.desktop.metainfo.xml ├── com.bitwarden.desktop.yaml └── flathub.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.bitwarden.desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.bitwarden.desktop/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.bitwarden.desktop/HEAD/README.md -------------------------------------------------------------------------------- /com.bitwarden.desktop.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.bitwarden.desktop/HEAD/com.bitwarden.desktop.metainfo.xml -------------------------------------------------------------------------------- /com.bitwarden.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.bitwarden.desktop/HEAD/com.bitwarden.desktop.yaml -------------------------------------------------------------------------------- /flathub.json: -------------------------------------------------------------------------------- 1 | { 2 | "only-arches": ["x86_64"] 3 | } 4 | --------------------------------------------------------------------------------