Neofetch-based app for movies!
- Search for any movie with posters and detailed information
- Customizable poster dimensions
- Customizable amount of information displayed
- Cross-platform support, works on any computer
There are no plans for this to be supported by go install, as I tried but was unable to get it working.
Simply go to the releases tab on this page, and select the appropriate file for your system.
The ZIP/tarball files are just source code.
If you are unsure of what version to download, run
# On Windows Command Prompt
echo %PROCESSOR_ARCHITECTURE%
#On the Mac/Linux terminal
arch=$(uname -m)
case "$arch" in
x86_64) echo "amd64" ;;
aarch64 | arm64) echo "arm64" ;;
i386 | i686) echo "386" ;;
*) echo "$arch" ;;
esacgit clone https://github.com/yubaix/mofetch.git
cd mofetch/
go build
sudo mv mofetch /usr/local/bin/
mofetch --help- Go to the OMDB API website
- Select 'FREE! (1,000 daily limit)'
- Enter in your email and name, put anything in for 'Use'
- Click Submit
- Check your email for the API Key
- Run
mofetch authand paste in your API key. - Hit enter, and you're good to go!
The API key is stored in ~/.config/mofetch/config.yaml.
Searching for content can be done with mufetch search
This command has two flags:
-verbose / -v toggles the verbose output during the search, with it set to off by default.
-size / -s changes the size of the poster, this is an integer value between 20 and 50, and is 20 by default.
Note that if you are searching for a movie with more than one word in the title, there must be dashes instead of whitespace (e.g the-brutalist instead of the brutalist).
Contributions are always welcome! Whether you want to:
- Report bugs or issues
- Suggest new features
- Improve the visual design
- Enhance documentation
- Submit code improvements
Please feel free to open an issue or submit a pull request.
- Cobra - CLI framework and command structure
- Viper - Configuration management
- Imaging - Image processing and resizing
- Massive thanks to Ashish Kumar, as I never would've been able to make this project without his Mufetch. He deserves more credit than I do, it's indicated in the code when some or all of the file was inspired by his project.
- Based off neofetch for the initial concept
- Thanks to OMDB API for film metadata
