summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md
diff options
context:
space:
mode:
authorNippy <nippy@rp1.hu>2026-07-28 15:11:02 +0200
committerNippy <nippy@rp1.hu>2026-07-28 15:11:02 +0200
commit077a92c901cb4f31bdb47a1a19a73636be0b4a48 (patch)
treed86acead5a642dd4d2dde332c0733012b37079c4 /raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md
parent0bd16bd038538d879cbf21f3ef0731f06c3bfb24 (diff)
downloadRaveOS-PKGBUILD-077a92c901cb4f31bdb47a1a19a73636be0b4a48.tar.gz
RaveOS-PKGBUILD-077a92c901cb4f31bdb47a1a19a73636be0b4a48.zip
new settings
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.md37
1 files changed, 0 insertions, 37 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
deleted file mode 100644
index 159b58d..0000000
--- a/raveos-hyprland-theme/theme-data/dms/PLUGINS/WallpaperWatcherDaemon/README.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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