https://github.com/nagilum/wallpaper-service
Simple Windows service to change wallpapers on multiple monitors on an interval
https://github.com/nagilum/wallpaper-service
csharp desktop wallpaper windows
Last synced: about 2 months ago
JSON representation
Simple Windows service to change wallpapers on multiple monitors on an interval
- Host: GitHub
- URL: https://github.com/nagilum/wallpaper-service
- Owner: nagilum
- Created: 2024-09-13T18:36:02.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-12T09:14:16.000Z (7 months ago)
- Last Synced: 2025-02-11T17:57:02.940Z (3 months ago)
- Topics: csharp, desktop, wallpaper, windows
- Language: C#
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WallpaperService
Simple Windows service to change wallpapers on multiple monitors on an interval.
## Settings
Configuration is done throught the `appsettings.json` file in the executable path.
```json
{
"interval": 3600,
"paths": ["C:\\Wallpapers"],
"recursive": true,
"pattern": "*.jpeg",
"shuffle": true
}
```### Interval
Interval, in seconds. Defaults to `1800` seconds (30 minutes).
### Paths
Paths is a list of folders to get files from. At least one folder path is required.
### Recursive
Whether to scan for files recursively in each folder path given. Defaults to `false`.
### Pattern
Pattern of files to match. Defaults to `*`.
### Shuffle
Whether to shuffle the files list. Defaults to `false`.
## Credit
Uses the [IDesktopWallpaperWrapper](https://github.com/9eck0/IDesktopWallpaper-dotNet/) behind the scenes.