Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diegorezm/wallpapercl

Wallpaper manager written with tauri
https://github.com/diegorezm/wallpapercl

react rust tauri

Last synced: about 22 hours ago
JSON representation

Wallpaper manager written with tauri

Awesome Lists containing this project

README

        

# WallpaperCL

**WallpaperCL** is a wallpaper manager application built with [Tauri](https://tauri.app/), designed to give you an easy way to organize and set your wallpapers on Linux systems.

![WallpaperCL Showcase](./showcase.png)

## Installation

### Dependencies

Ensure you have the required dependencies installed. For Arch Linux users, you can install the following:

```bash
sudo pacman -S feh
```

### Download

Visit the [Releases Page](https://github.com/diegorezm/wallpapercl/releases) to download the latest version of WallpaperCL.

### Auto-set Wallpaper on Startup

To ensure your wallpaper is set on startup, add the following line to your `.xinitrc` file (assuming you use `xinit`):

```bash
$HOME/.fehbg
```

This will automatically apply the wallpaper using `feh` when you start your window manager.

## Development

If you wish to contribute or build WallpaperCL from source, follow these steps (for Arch Linux users):

1. Update your system:

```bash
sudo pacman -Syu
```

2. Install the necessary dependencies:

```bash
sudo pacman -S --needed \
webkit2gtk \
base-devel \
curl \
wget \
file \
openssl \
appmenu-gtk-module \
gtk3 \
libappindicator-gtk3 \
librsvg \
libvips \
feh
```

3. Install bun:

```bash
curl -fsSL https://bun.sh/install | bash
```

4. Clone the repository:

```bash
git clone https://github.com/diegorezm/wallpapercl
```

5. Install Bun dependencies and start the development environment:

```bash
cd wallpapercl
bun i
bun run tauri dev
```

Now, you're ready to contribute or modify the application.