├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Pypi_README.md ├── README.md ├── assets ├── issue1.png ├── preview_cheatshh_1.mov └── preview_cheatshh_2.mov ├── cheatshh ├── __init__.py ├── cheats.sh ├── cheatshh.toml ├── commands.json ├── groups.json └── main.py ├── docs ├── cheatshh_configurations.md ├── man │ └── cheatshh.1 └── tldr │ └── cheatshh.md ├── library ├── Games │ ├── commands.json │ └── groups.json ├── General Commands │ ├── commands.json │ └── groups.json ├── Pypi Publishing │ ├── commands.json │ └── groups.json ├── README.md ├── Terminal Show off │ ├── commands.json │ └── groups.json ├── Terminal Utilities │ ├── commands.json │ └── groups.json ├── docker │ ├── commands.json │ └── groups.json └── git │ ├── commands.json │ └── groups.json ├── pyproject.toml ├── requirements.txt └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cheatshh.egg-info 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pypi_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/Pypi_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/README.md -------------------------------------------------------------------------------- /assets/issue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/assets/issue1.png -------------------------------------------------------------------------------- /assets/preview_cheatshh_1.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/assets/preview_cheatshh_1.mov -------------------------------------------------------------------------------- /assets/preview_cheatshh_2.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/assets/preview_cheatshh_2.mov -------------------------------------------------------------------------------- /cheatshh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheatshh/cheats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/cheatshh/cheats.sh -------------------------------------------------------------------------------- /cheatshh/cheatshh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/cheatshh/cheatshh.toml -------------------------------------------------------------------------------- /cheatshh/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/cheatshh/commands.json -------------------------------------------------------------------------------- /cheatshh/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/cheatshh/groups.json -------------------------------------------------------------------------------- /cheatshh/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/cheatshh/main.py -------------------------------------------------------------------------------- /docs/cheatshh_configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/docs/cheatshh_configurations.md -------------------------------------------------------------------------------- /docs/man/cheatshh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/docs/man/cheatshh.1 -------------------------------------------------------------------------------- /docs/tldr/cheatshh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/docs/tldr/cheatshh.md -------------------------------------------------------------------------------- /library/Games/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Games/commands.json -------------------------------------------------------------------------------- /library/Games/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Games/groups.json -------------------------------------------------------------------------------- /library/General Commands/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/General Commands/commands.json -------------------------------------------------------------------------------- /library/General Commands/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/General Commands/groups.json -------------------------------------------------------------------------------- /library/Pypi Publishing/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Pypi Publishing/commands.json -------------------------------------------------------------------------------- /library/Pypi Publishing/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Pypi Publishing/groups.json -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/README.md -------------------------------------------------------------------------------- /library/Terminal Show off/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Terminal Show off/commands.json -------------------------------------------------------------------------------- /library/Terminal Show off/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Terminal Show off/groups.json -------------------------------------------------------------------------------- /library/Terminal Utilities/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Terminal Utilities/commands.json -------------------------------------------------------------------------------- /library/Terminal Utilities/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/Terminal Utilities/groups.json -------------------------------------------------------------------------------- /library/docker/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/docker/commands.json -------------------------------------------------------------------------------- /library/docker/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/docker/groups.json -------------------------------------------------------------------------------- /library/git/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/git/commands.json -------------------------------------------------------------------------------- /library/git/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/library/git/groups.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fzf-bin 2 | whiptail 3 | yq 4 | jq 5 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnirudhG07/cheatshh/HEAD/uv.lock --------------------------------------------------------------------------------