diff options
| author | Nippy <nippy@rp1.hu> | 2026-05-08 19:50:49 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-05-08 19:50:49 +0200 |
| commit | 3462bcc46ecf74f576ea4397f16492c16bd75b10 (patch) | |
| tree | c5ab7aef4498647e057bda8d49c11e5f9dda74c9 /raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md | |
| parent | 56616f693b4f263cbf0d47da43b67424efa6022d (diff) | |
| download | RaveOS-PKGBUILD-3462bcc46ecf74f576ea4397f16492c16bd75b10.tar.gz RaveOS-PKGBUILD-3462bcc46ecf74f576ea4397f16492c16bd75b10.zip | |
raveos update
Diffstat (limited to 'raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md')
| -rw-r--r-- | raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md b/raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md new file mode 100644 index 0000000..159b58d --- /dev/null +++ b/raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md @@ -0,0 +1,37 @@ +# Wallpaper Watcher Daemon + +Run a script whenever your wallpaper changes. + +## What it does + +This daemon monitors wallpaper changes and executes a script you specify. The new wallpaper path gets passed as the first argument to your script. + +## Setup + +1. Enable the plugin in Settings → Plugins +2. Configure the script path in the plugin settings +3. Make sure your script is executable (`chmod +x /path/to/script.sh`) + +## Example script + +```bash +#!/bin/bash +echo "New wallpaper: $1" +# Do something with the wallpaper path +``` + +Save this to a file, make it executable, and point the plugin to it. + +## Use cases + +- Generate color schemes from the new wallpaper +- Update theme files based on wallpaper colors +- Send notifications when wallpaper changes +- Sync wallpaper info to other devices +- Log wallpaper history + +## Notes + +- Script errors show up as toast notifications +- Script output goes to console logs +- The daemon runs invisibly in the background |