chwp 1.231.0

Change your wallpaper from the command line interface.
<p align="center">
  <img src="https://raw.githubusercontent.com/RouHim/chwp/main/banner.svg" width="500">
</p>

<p align="center">
    <a href="https://github.com/RouHim/chwp/actions/workflows/pipe.yaml"><img src="https://github.com/RouHim/chwp/actions/workflows/pipe.yaml/badge.svg" alt="CI"></a>
    <a href="https://github.com/RouHim/chwp/releases"><img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/rouhim/chwp?label=version"></a>
    <a href="https://github.com/RouHim/chwp/releases"><img alt="GitHub Release Date" src="https://img.shields.io/github/release-date/RouHim/chwp"></a>
<a href="https://buymeacoffee.com/rouhim"><img alt="Donate me" src="https://img.shields.io/badge/-buy_me_a%C2%A0coffee-gray?logo=buy-me-a-coffee"></a>
</p>

<p align="center">
    <i>Changes the wallpaper from the command line.</i>
</p>

## Motivation

I love the command line, and I love eye candy, this tool combines both worlds by allowing me to change the background
image from the command line.

## Installation

### Build from source

Use the [cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html) package manager to install
the [chwp](https://crates.io/crates/chwp) crate:

```shell
cargo install chwp
```

### Download latest binary

This snippet will download and install the latest chwp release:

```shell
LATEST_VERSION=$(curl -L -s -H 'Accept: application/json' https://github.com/RouHim/chwp/releases/latest | sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/') && \
sudo curl -L -o /usr/bin/chwp https://github.com/RouHim/chwp/releases/download/$LATEST_VERSION/chwp-linux-x86-64 && \
sudo chmod +x /usr/bin/chwp
```

### Arch Linux

Install [chwp-bin](https://aur.archlinux.org/packages/chwp-bin) [AUR](https://aur.archlinux.org/) package:

```shell
yay -S chwp-bin
```

## Usage

```shell
chwp [keywords]|[imageurl] span
```

### Examples

Set a random wallpaper for the keyword ocean:

```shell
chwp ocean
```

Set a wallpaper from a specific image url:

```shell
chwp https://source.unsplash.com/1920x1080
```

Set a wallpaper from a local path. 
A random one will be chosen:

```shell
chwp /path/to/pictures/
```

Set a wallpaper from multiple keywords, a random one will be selected:

```shell
chwp water,sky,ocean
```

Combine multiple keywords with a `+`:

```shell
chwp night+city
```

The `span` parameter can be used to span the wallpaper over multiple screens:

```shell
chwp ocean span
```