| Crates.io | wallheaven |
| lib.rs | wallheaven |
| version | 1.1.1 |
| created_at | 2024-09-10 14:46:13.872634+00 |
| updated_at | 2024-10-05 08:11:50.172943+00 |
| description | Random image fetcher for wallhaven.cc |
| homepage | https://github.com/davenicholson-xyz/wallheaven |
| repository | https://github.com/davenicholson-xyz/wallheaven |
| max_upload_size | |
| id | 1370438 |
| size | 190,505 |
Wallheaven is a CLI tool for fetching random wallpapers from wallhaven.cc. Wallheaven will randomly choose a wallpaper from various lists including your own collections using your API key. Wallheaven will set the wallpaper on your desktop on Windows, Mac and many Linux desktop environments.
Any unsupported can be manually set by passing a custom script. Feel free to raise an issue or a pull request for any missing environments.
All queries and selected wallpapers are cached to cut down on API calls.
You can now select a wallpaper straight from the wallhaven.cc website using the chrome extension on the chrome web store. Run the wallheavend daemon on Linux/Mac or wallheavend.exe on Windows and a new button will appear on the wallpaper thumbnails and an extra button on the wallpaper info page.
![]()
Wallpaper thumbnail link when hovering over thumbnails

Sidebar link shown on wallpaper info page
Cargo
cargo install wallheaven
Arch (AUR)
yay -S wallheaven
Homebrew
brew install davenicholson-xyz/tap/wallheaven
Download and install/build from the latest release
Configuration is stored in $HOME/.config/wallheaven/config.toml on linux/mac or %appdata%/Roaming/wallheaven/config.toml on Windows. Wallheaven's defaults will be overwritten by these options, which in turn will be overwritten by any environment variables set proceeded with WALLHEAVEN_. These can then be overridden with any command line flags.
An example config.toml is in this here
Call the wallheaven command and select an option to retrieve a random wallpaper.
wallheaven -c collection_name will select a wallpaper from your collection with that name. Include your username and API key in the config/flags.
wallheaven -r search_term will return wallpapers from that query.
wallheaven -t to get a random wallpaper from the toplist. Pass a range option to search time range --range 1w will search the toplist for the past week.
wallheaven --hot will get wallpapers from the hottest wallpapers list.
--config [path]Path to config file to use if not using default config path
--username [username]wallhaven.cc username. Required to fetch from your collections
--apikey [apikey]wallhaven.cc apikey to fetch NSFW images
-c --collection [name]Name of collection to fetch random wallpaper from. Requires API key and username to be set
-r --randomSearch query to select random wallpaper from
-t --toplistSelect a random image wallpaper from the most popular wallpapers in a time range
--range [1d, 3d, 1w, 1M, 3M, 6M, 1y] - Default 1MThe time range to select toplist wallpaper from. Default to 1M
--hotChoose a random wallpaper from the most popular wallpapers right now!
-i --id [wallhaven id]Sets wallpaper using the wallhaven.cc wallpaper ID
-p --purity [100,001,101 etc] - Default 110Bits representing (sfw/sketchy/nsfw). Turn purities on(1) or off(0). NSFW requires a valid API key. Example: -p 100 will only return SFW images.
--categories [100,001,101 etc] - Default 111Bits representing categories to search from (general/anime/people). Turn categories on(1) or off (0). Example: --categories 101 will not show anime images
--pages [1 - 10] - Default 3Amount of pages to search for random toplist/hot image. Higher number = more API calls so slower.
-e --expiry [number] - Default 600Time in seconds to use cached search results. After this time the API will be searched for new wallpapers.
-s --script [path]Path to external script to call with path to downloaded image. Use to set desktop wallpaper.
-f --fileReturns the current file path of the last wallpaper set with wallhwaven
-u --urlReturn the wallhaven.cc link to the last wallpaper set with wallheaven
-o --outputReturn the wallpaper file path without setting the wallpaper
-l --lastReturns the last query made with --random
-d --deleteDeletes cache files
-h --helpHelp file
-V --versionVersion info
The wallheaven app sets the wallpaper depending on OS and desktop environment used. If yours is currently unsupported or you need a custom script you can set it using the post_script option in config.toml of via the -s --script flag (wallheaven -t -s "swww img")
You can also just pipe the output directly into a script.
wallheaven -t | swww img for example. Or if it does not allow piping feh --bg-fill $(wallhaven -t)
An example script to set the wallpaper on both Linux and Mac can be found here