All Projects → t1m0thyj → WDD-scripts

t1m0thyj / WDD-scripts

Licence: other
PowerShell scripts that add features to WinDynamicDesktop

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to WDD-scripts

Harbor
An open source trusted cloud native registry project that stores, signs, and scans content.
Stars: ✭ 16,320 (+32540%)
Mutual labels:  registry
Windows11-betterUX
A non-destructive registry preset to improve the default user-experience with windows 10.
Stars: ✭ 21 (-58%)
Mutual labels:  registry
regln
Windows Rregistry Linking Utility
Stars: ✭ 38 (-24%)
Mutual labels:  registry
Registry
The registry of type definitions for TypeScript
Stars: ✭ 235 (+370%)
Mutual labels:  registry
security-holder
An npm package that holds a spot.
Stars: ✭ 141 (+182%)
Mutual labels:  registry
anthology
A private Terraform registry implementation as an alternative to the official registry.
Stars: ✭ 112 (+124%)
Mutual labels:  registry
Kitspace
A place to share electronics projects
Stars: ✭ 182 (+264%)
Mutual labels:  registry
secret config
Centralized Configuration and Secrets Management for Ruby and Rails applications.
Stars: ✭ 15 (-70%)
Mutual labels:  registry
module-dependents
Get the list of npm modules that depend on the specified npm module.
Stars: ✭ 15 (-70%)
Mutual labels:  registry
craneoperator
Gives you a simple web interface for browsing around a Docker Registry
Stars: ✭ 116 (+132%)
Mutual labels:  registry
Datbase
[DEPRECATED] Open data sharing powered by Dat
Stars: ✭ 251 (+402%)
Mutual labels:  registry
redis-registry
Service registry and discovery for Node.js on top of Redis
Stars: ✭ 26 (-48%)
Mutual labels:  registry
xmutca-rpc
Xmutca-rpc是一个基于netty开发的分布式服务框架,提供稳定高性能的RPC远程服务调用功能,支持注册中心,服务治理,负载均衡等特性,开箱即用。
Stars: ✭ 18 (-64%)
Mutual labels:  registry
Citizen
A Private Terraform Module Registry
Stars: ✭ 230 (+360%)
Mutual labels:  registry
nxt registry
A simple registry to implement the container pattern
Stars: ✭ 16 (-68%)
Mutual labels:  registry
Registry
npm registry documentation
Stars: ✭ 202 (+304%)
Mutual labels:  registry
regclient
Docker and OCI Registry Client in Go and tooling using those libraries.
Stars: ✭ 603 (+1106%)
Mutual labels:  registry
srclient
Golang Client for Schema Registry
Stars: ✭ 188 (+276%)
Mutual labels:  registry
available
Scan npm for available package names
Stars: ✭ 98 (+96%)
Mutual labels:  registry
brazil-civil-registry-data
Raw scrapings of ARPEN https://transparencia.registrocivil.org.br/
Stars: ✭ 35 (-30%)
Mutual labels:  registry

WDD-scripts

PowerShell scripts that add features to WinDynamicDesktop

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 the following parameters:

<scriptName> [-daySegment2] <int> [-daySegment4] <int> [-nightMode] <bool> [-imagePath <string>]

To read the values of these parameters, add the following lines at the top of your script:

param (
    [Parameter(Mandatory=$true)][int]$daySegment2,  # 0 = Day, 1 = Night
    [Parameter(Mandatory=$true)][int]$daySegment4,  # -1 = N/A, 0 = Sunrise, 1 = Day, 2 = Sunset, 3 = Night
    [Parameter(Mandatory=$true)][bool]$nightMode,   # True if night mode is enabled
    [Parameter(Mandatory=$false)][string]$imagePath # Path to current wallpaper image
)

A sample script that makes use of these variables 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].