| Crates.io | kitget |
| lib.rs | kitget |
| version | 0.0.2 |
| created_at | 2025-04-12 13:17:53.147184+00 |
| updated_at | 2025-04-14 11:09:34.326666+00 |
| description | Display and customize cat images in your terminal 😼 |
| homepage | |
| repository | https://github.com/adamperkowski/kitget |
| max_upload_size | |
| id | 1630910 |
| size | 65,366 |
Display and customize cat images in your terminal :smirk_cat:

![]() |
![]() |
![]() |
![]() |
You can use kitget directly with Fastfetch:
kitget --square | fastfetch --file-raw -
This might not work on terminals supporting images. Example Bash function (to use in your ~/.bashrc) for Kitty:
ff() {
stamp="$(date +%s)"
kitget --square -o "/tmp/kitget-$stamp"
clear
fastfetch --kitty "/tmp/kitget-$stamp" "$@"
rm -f "/tmp/kitget-$stamp"
}
kitget is available in the AUR. It can be installed using an AUR helper (e.g. paru):
paru -S kitget
For all systems supported by Rust, you can install kitget using Cargo:
cargo install kitget
Keep in mind that crates installed with cargo install have to be manually upgraded and may not be included in $PATH by default.