A desktop GUI application built with Go and Gio UI that fetches and displays random cat images from cataas.com.
-
Download the latest release for Windows:
- Go to Releases
- Download
catfetch_vX.X.X_windows_amd64.zip
-
Extract the ZIP file to a location of your choice
-
Run
catfetch-windows-amd64.exe
Optional: Add the extracted folder to your PATH to run from anywhere.
-
Download the latest release for macOS:
- Go to Releases
- Download
catfetch_vX.X.X_macos_universal.zip(supports both Intel and Apple Silicon)
-
Extract the ZIP file
-
Double-click
catfetch.appto launch
Note: On first launch, macOS may warn that the app is from an unidentified developer. Right-click the app and select "Open" to bypass this warning.
-
Download the latest release for Linux:
- Go to Releases
- Download
catfetch_vX.X.X_linux_amd64.tar.gz
-
Extract and run:
tar -xzf catfetch_vX.X.X_linux_amd64.tar.gz ./catfetch-linux-amd64
User-local install:
cp catfetch-linux-amd64 ~/bin/catfetch
chmod +x ~/bin/catfetch
# Ensure ~/bin is in your PATHSystem-wide install:
sudo cp catfetch-linux-amd64 /usr/local/bin/catfetch
sudo chmod +x /usr/local/bin/catfetchThen run from anywhere:
catfetchLaunch the application and click the "Fetch Image" button to load a random cat picture. The image will automatically scale to fit the window while maintaining its aspect ratio.
- Go 1.25 or higher
- Platform-specific dependencies:
- Linux:
libwayland-dev,libx11-dev,libxkbcommon-x11-dev,libgles2-mesa-dev,libegl1-mesa-dev,libffi-dev,libxcursor-dev,libvulkan-dev - macOS: Xcode command line tools
- Windows: MinGW-w64 or similar CGO-compatible compiler
- Linux:
# Clone the repository
git clone https://github.com/bmj2728/catfetch.git
cd catfetch
# Build the application
go build -o build/catfetch ./cmd/catfetch
# Run it
./build/catfetchOr run directly without building:
go run ./cmd/catfetch/main.go# Run all tests
go test ./...
# Run with coverage
go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
# View coverage report
go tool cover -html=coverage.out- Cat History: Browse previously fetched cat images
- Text Overlays: Add custom text overlays to cat images
- Tag Search: Search for cats by specific tags
- Image Filters: Add sliders and options to apply filters (sepia, blur, brightness, etc.) using cataas API parameters
MIT License - see LICENSE file for details.
Copyright (c) 2026 NovelGit LLC

