Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/diegorezm/wallpapercl
- Owner: diegorezm
- Created: 2024-09-05T17:27:05.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T14:25:16.000Z (1 day ago)
- Last Synced: 2024-11-13T15:28:20.903Z (1 day ago)
- Topics: react, rust, tauri
- Language: TypeScript
- Homepage:
- Size: 1.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.