gitextract_zuvhj3r3/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── config.yml │ │ └── everything-else.md │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ ├── build-tauri.yml │ ├── build.yml │ ├── codeql.yml │ ├── dependabot-automerge.yml │ ├── diagram.yml │ ├── greetings.yml │ ├── test.yml │ └── winget.yml ├── .gitignore ├── .gitmodules ├── .tool-versions ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── SECURITY.md ├── aw.spec ├── gptme.toml ├── pyproject.toml └── scripts/ ├── build_changelog.py ├── changelog_contributors.csv ├── changelog_contributors_twitter.csv ├── checkout-latest-tag.sh ├── chores/ │ └── make-release.sh ├── ci/ │ ├── enable_long_paths.bat │ ├── import-macos-p12.sh │ ├── install_node.ps1 │ ├── install_pyhook.ps1 │ ├── install_python.ps1 │ └── run_with_env.cmd ├── count_lines.sh ├── get_latest_release.sh ├── logcrawler.py ├── nop.sh ├── notarize.sh ├── package/ │ ├── README.txt │ ├── activitywatch-setup.iss │ ├── aw-tauri.iss │ ├── build_app_tauri.sh │ ├── deb/ │ │ └── control │ ├── dmgbuild-settings.py │ ├── entitlements.plist │ ├── getversion.sh │ ├── move-to-aw-modules.sh │ ├── package-all.sh │ ├── package-appimage.sh │ └── package-deb.sh ├── submodule-branch.sh ├── symlink-systemd.sh ├── tests/ │ └── integration_tests.py ├── uninstall.sh └── update-deps.sh