https://github.com/diegorezm/wallpapercl
https://github.com/diegorezm/wallpapercl
ratatui rust
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/diegorezm/wallpapercl
- Owner: diegorezm
- Created: 2025-02-08T23:20:10.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-09T22:58:26.000Z (4 months ago)
- Last Synced: 2025-02-09T23:27:13.888Z (4 months ago)
- Topics: ratatui, rust
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
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.

## 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.