Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.6 KB

File metadata and controls

34 lines (21 loc) · 1.6 KB

WDD-scripts

PowerShell scripts that add features to WinDynamicDesktop

⚠️ This repository is no longer actively maintained. The scripts work as-is and serve as examples of extending WDD. Support is not guaranteed, but pull requests are welcome.

Note: Scripts are a new feature in WinDynamicDesktop 4.0. Click here for instructions on how to install them.

Browse Existing Scripts

Select a category of scripts to browse:

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 display

To read the values of these parameters, add the line below to the top of your script and access them like this: $params.daySegment2

$params = $Input | ConvertFrom-Json

A sample script that uses parameters can be found here. 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.