├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bwm.1 ├── bwm.1.md ├── bwm ├── __init__.py ├── __main__.py ├── bwcli.py ├── bwedit.py ├── bwm.py ├── bwtype.py ├── bwview.py ├── menu.py ├── tokens_pynput.py ├── tokens_wtype.py ├── tokens_xdotool.py ├── tokens_ydotool.py └── totp.py ├── config.ini.example ├── docs ├── configure.md ├── install.md ├── short.gif └── usage.md ├── flake.lock ├── flake.nix ├── pyproject.toml └── requirements.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/README.md -------------------------------------------------------------------------------- /bwm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm.1 -------------------------------------------------------------------------------- /bwm.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm.1.md -------------------------------------------------------------------------------- /bwm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/__init__.py -------------------------------------------------------------------------------- /bwm/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/__main__.py -------------------------------------------------------------------------------- /bwm/bwcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/bwcli.py -------------------------------------------------------------------------------- /bwm/bwedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/bwedit.py -------------------------------------------------------------------------------- /bwm/bwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/bwm.py -------------------------------------------------------------------------------- /bwm/bwtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/bwtype.py -------------------------------------------------------------------------------- /bwm/bwview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/bwview.py -------------------------------------------------------------------------------- /bwm/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/menu.py -------------------------------------------------------------------------------- /bwm/tokens_pynput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/tokens_pynput.py -------------------------------------------------------------------------------- /bwm/tokens_wtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/tokens_wtype.py -------------------------------------------------------------------------------- /bwm/tokens_xdotool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/tokens_xdotool.py -------------------------------------------------------------------------------- /bwm/tokens_ydotool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/tokens_ydotool.py -------------------------------------------------------------------------------- /bwm/totp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/bwm/totp.py -------------------------------------------------------------------------------- /config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/config.ini.example -------------------------------------------------------------------------------- /docs/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/docs/configure.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/docs/short.gif -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/docs/usage.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/flake.nix -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecat53/bitwarden-menu/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pynput 2 | xdg-base-dirs 3 | --------------------------------------------------------------------------------