Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t1m0thyj/wdd-scripts
PowerShell scripts that add features to WinDynamicDesktop
https://github.com/t1m0thyj/wdd-scripts
powershell registry windynamicdesktop
Last synced: 10 days ago
JSON representation
PowerShell scripts that add features to WinDynamicDesktop
- Host: GitHub
- URL: https://github.com/t1m0thyj/wdd-scripts
- Owner: t1m0thyj
- Created: 2020-01-12T01:29:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-27T17:09:08.000Z (3 months ago)
- Last Synced: 2024-10-12T14:09:33.152Z (25 days ago)
- Topics: powershell, registry, windynamicdesktop
- Language: PowerShell
- Homepage:
- Size: 28.3 KB
- Stars: 85
- Watchers: 4
- Forks: 19
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WDD-scripts
PowerShell scripts that add features to [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop)**Note:** Scripts are a new feature in WinDynamicDesktop 4.0. Click [here](https://github.com/t1m0thyj/WinDynamicDesktop/wiki/Installing-scripts) for instructions on how to install them.
## Browse Existing Scripts
Select a category of scripts to browse:
* [Stable](/stable#readme)
* [Experimental](/experimental#readme)
* [Other scripts](/other#readme)## Create New Scripts
PowerShell scripts are run by WinDynamicDesktop when the wallpaper image is updated. They are invoked with a JSON object that contains the following parameters:
* `daySegment2` - 0 = Day, 1 = Night
* `daySegment4` - -1 = N/A, 0 = Sunrise, 1 = Day, 2 = Sunset, 3 = Night
* `themeMode` - 0 = Automatic, 1 = Light Mode, 2 = Dark Mode
* `imagePaths` - List of paths to current wallpaper image for each displayTo read the values of these parameters, add the line below to the top of your script and access them like this: `$params.daySegment2`
```powershell
$params = $Input | ConvertFrom-Json
```A sample script that uses parameters can be found [here](./SampleScript.ps1). When the sample script is installed and gets run by WinDynamicDesktop, it will display the values of all the parameters.
If you create a script and would like to share it with other users of the app, pull requests in this repository are welcome.