Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ea5de27b6c | ||
|
|
2752fe2e03 | ||
|
|
1458327638 | ||
|
|
ea7fcf9d2b | ||
|
|
0aa4ab3a40 | ||
|
|
afc3e1eec2 | ||
|
|
53fc260cc0 | ||
|
|
bc607b6c91 | ||
|
|
7f18b4fd60 | ||
|
|
32ab9f0ab0 | ||
|
|
9fdadd1c8f | ||
|
|
6de45a38b9 | ||
|
|
8860caf357 | ||
|
|
8fb078da4c | ||
|
|
95e3a54405 | ||
|
|
c817d3329a | ||
|
|
19f938e876 | ||
|
|
d64bb18717 | ||
|
|
5ad168e0c4 | ||
|
|
8d3adb599f | ||
|
|
f7c072341d | ||
|
|
32cc623959 | ||
|
|
b096aaa5e5 | ||
|
|
a0142ace72 | ||
|
|
97f2ad6e98 | ||
|
|
97e0711034 | ||
|
|
b832da622f | ||
|
|
f7361fdb72 | ||
|
|
f3cf1587e0 | ||
|
|
91ffd3af30 | ||
|
|
1ef581026f | ||
|
|
89fd09fc0e | ||
|
|
056a819470 | ||
|
|
e96f990c60 |
@@ -5,13 +5,13 @@
|
|||||||
* Test the latest changes to WinUtil by running the pre-release and reporting issues you are encountering to help us continually improve WinUtil!
|
* Test the latest changes to WinUtil by running the pre-release and reporting issues you are encountering to help us continually improve WinUtil!
|
||||||
|
|
||||||
#### **Run the latest pre-release**
|
#### **Run the latest pre-release**
|
||||||
|
|
||||||
```ps1
|
```ps1
|
||||||
irm https://christitus.com/windev | iex
|
irm https://christitus.com/windev | iex
|
||||||
```
|
```
|
||||||
|
|
||||||
!!! bug "Keep in mind"
|
> [!CAUTION]
|
||||||
|
> **Keep in mind:** This is a pre-release and should be treated as such. It exists for developers to test the utility and report or fix bugs before they get added to the stable release. Don't use it in production!
|
||||||
This is a pre-release and should be treated as such. It exists for developers to test the utility and report or fix bugs before they get added to the stable release. Don't use it in production!
|
|
||||||
|
|
||||||
## Issues
|
## Issues
|
||||||
|
|
||||||
@@ -23,19 +23,17 @@
|
|||||||
|
|
||||||
* If you're doing code changes, then you can submit a PR to the `main` branch.
|
* If you're doing code changes, then you can submit a PR to the `main` branch.
|
||||||
|
|
||||||
!!! warning "Important"
|
> [!IMPORTANT]
|
||||||
|
> Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE ITS OWN PULL REQUEST!
|
||||||
Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE IT'S OWN PULL REQUEST!
|
>
|
||||||
|
> Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support.
|
||||||
Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support.
|
|
||||||
|
|
||||||
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied.
|
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied.
|
||||||
|
|
||||||
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
||||||
|
|
||||||
!!! note
|
> [!NOTE]
|
||||||
|
> When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
||||||
When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
|
||||||
|
|
||||||
## Walk through
|
## Walk through
|
||||||
|
|
||||||
@@ -50,34 +48,31 @@
|
|||||||
```mermaid
|
```mermaid
|
||||||
%%{init: {"flowchart": {"curve": "cardinal"}} }%%
|
%%{init: {"flowchart": {"curve": "cardinal"}} }%%
|
||||||
graph TD
|
graph TD
|
||||||
A[Fork Project] --> B[Clone Repository];
|
A[Fork Project] --> B[Clone Repository];
|
||||||
B --> C[Create New Branch];
|
B --> C[Create New Branch];
|
||||||
C --> D[Make Changes];
|
C --> D[Make Changes];
|
||||||
D --> G[Test Changes];
|
D --> G[Test Changes];
|
||||||
G --> H{Tests Passed?};
|
G --> H{Tests Passed?};
|
||||||
H -->|Yes| E[Commit Changes];
|
H -->|Yes| E[Commit Changes];
|
||||||
H -->|No| J[Fix Issues];
|
H -->|No| J[Fix Issues];
|
||||||
J --> G;
|
J --> G;
|
||||||
E --> F[Push Branch];
|
E --> F[Push Branch];
|
||||||
F --> K[Create Pull Request];
|
F --> K[Create Pull Request];
|
||||||
K --> L[Fill out PR template];
|
K --> L[Fill out PR template];
|
||||||
classDef default stroke:#333,stroke-width:4px,font-size:12pt;
|
classDef default stroke:#333,stroke-width:4px,font-size:12pt;
|
||||||
```
|
```
|
||||||
!!! info
|
|
||||||
|
|
||||||
This is a diagram to guide you through the process. It may vary depending on the type of change you're making.
|
> [!NOTE]
|
||||||
|
> This is a diagram to guide you through the process. It may vary depending on the type of change you're making.
|
||||||
|
|
||||||
### Fork the Repo
|
### Fork the Repo
|
||||||
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your repository list.
|
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your repository list.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
### Clone the Fork
|
### Clone the Fork
|
||||||
!!! tip
|
> [!TIP]
|
||||||
|
> While you can make your changes directly through the Web, we recommend cloning the repo to your device using the application GitHub Desktop (available in WinUtil) to test your fork easily.
|
||||||
While you can make your changes directly through the Web, we recommend cloning the repo to your device using the application GitHub Desktop (available in WinUtil) to test your fork easily.
|
|
||||||
|
|
||||||
* Install GitHub Desktop if it is not already installed.
|
* Install GitHub Desktop if it is not already installed.
|
||||||
* Log in using the same GitHub account you used to fork WinUtil.
|
* Log in using the same GitHub account you used to fork WinUtil.
|
||||||
@@ -96,7 +91,7 @@ graph TD
|
|||||||
* Run the following command to compile and run WinUtil:
|
* Run the following command to compile and run WinUtil:
|
||||||
* `.\Compile.ps1 -run`
|
* `.\Compile.ps1 -run`
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
Open PowerShell as Administrator.
|
Open PowerShell as Administrator.
|
||||||
@@ -107,15 +102,15 @@ Open PowerShell as Administrator.
|
|||||||
### Committing the changes
|
### Committing the changes
|
||||||
* Before committing your changes, please discard changes made to the `winutil.ps1` file, like the following:
|
* Before committing your changes, please discard changes made to the `winutil.ps1` file, like the following:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
* Now, commit your changes once you are happy with the result.
|
* Now, commit your changes once you are happy with the result.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
* Push the changes to upload them to your fork on github.com.
|
* Push the changes to upload them to your fork on GitHub.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Making a PR
|
### Making a PR
|
||||||
* To make a PR on your repo under a new branch linking to the main branch, a button will show and say Preview and Create pull request. Click that button and fill in all the information that is provided on the template. Once all the information is filled in correctly, check your PR to make sure there is no WinUtil.ps1 file attached to the PR. Once everything is good, make the PR and wait for Chris (the maintainer) to accept or deny your PR. Once it is accepted by Chris, you will be able to see your changes in the "/windev" build.
|
* To make a PR on your repo under a new branch linking to the main branch, a button will show and say Preview and Create pull request. Click that button and fill in all the information that is provided on the template. Once all the information is filled in correctly, check your PR to make sure there is no WinUtil.ps1 file attached to the PR. Once everything is good, make the PR and wait for Chris (the maintainer) to accept or deny your PR. Once it is accepted by Chris, you will be able to see your changes in the "/windev" build.
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
name: "Bug report"
|
name: "Bug report"
|
||||||
description: "Report a bug to help us identify and fix issues in the project."
|
description: "Report a bug to help us identify and fix issues in the project."
|
||||||
|
title: "[Bug Report] - <your summary here>"
|
||||||
labels: ["bug"]
|
labels: ["bug"]
|
||||||
|
|
||||||
body:
|
body:
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
name: "Feature request"
|
name: "Feature request"
|
||||||
description: "Suggest a new feature or improvement for the project."
|
description: "Suggest a new feature or improvement for the project."
|
||||||
|
title: "[Feature Request] - <your summary here>"
|
||||||
labels: ["enhancement"]
|
labels: ["enhancement"]
|
||||||
|
|
||||||
body:
|
body:
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
Questa utility è una raccolta di attività Windows che eseguo personalmente su ogni sistema che utilizzo. È progettata per snellire le *installazioni*, rimuovere i componenti superflui tramite *ottimizzazioni*, risolvere problemi tramite la *configurazione*, e riparare *aggiornamenti* di Windows. Sono estremamente selettivo riguardo ai contributi per mantenere questo progetto pulito ed efficiente.
|
Questa utility è una raccolta di attività Windows che eseguo personalmente su ogni sistema che utilizzo. È progettata per snellire le *installazioni*, rimuovere i componenti superflui tramite *ottimizzazioni*, risolvere problemi tramite la *configurazione*, e riparare *aggiornamenti* di Windows. Sono estremamente selettivo riguardo ai contributi per mantenere questo progetto pulito ed efficiente.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## 💡 Come usarlo
|
## 💡 Come usarlo
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# Copilot Instructions
|
||||||
|
|
||||||
|
Read `AGENTS.md` in the repository root for operating instructions before doing anything else.
|
||||||
@@ -6,25 +6,17 @@ on:
|
|||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
- "config/tweaks.json"
|
|
||||||
- "config/feature.json"
|
|
||||||
- "functions/**"
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pages: write
|
pages: write
|
||||||
id-token: write
|
id-token: write
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: "pages"
|
group: "pages"
|
||||||
cancel-in-progress: false
|
cancel-in-progress: false
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: github.repository == 'ChrisTitusTech/winutil'
|
if: github.repository == 'ChrisTitusTech/winutil'
|
||||||
@@ -38,36 +30,6 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: Generate Dev Docs from JSON
|
|
||||||
shell: pwsh
|
|
||||||
run: |
|
|
||||||
Set-Location tools
|
|
||||||
./devdocs-generator.ps1
|
|
||||||
|
|
||||||
- name: Create Pull Request
|
|
||||||
id: cpr
|
|
||||||
uses: peter-evans/create-pull-request@v8
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.AUTO_MERGE }}
|
|
||||||
commit-message: 'chore: Update generated dev docs'
|
|
||||||
title: 'chore: Update Generated Dev Docs'
|
|
||||||
body: 'Automated update of generated documentation from JSON sources'
|
|
||||||
branch: docs-update
|
|
||||||
delete-branch: true
|
|
||||||
add-paths: |
|
|
||||||
docs/src/content/docs/code-reference/
|
|
||||||
config/tweaks.json
|
|
||||||
config/feature.json
|
|
||||||
labels: |
|
|
||||||
automated
|
|
||||||
documentation
|
|
||||||
skip-changelog
|
|
||||||
|
|
||||||
- name: Check outputs
|
|
||||||
run: |
|
|
||||||
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
|
||||||
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|
|
||||||
|
|
||||||
- name: Install, build, and upload your site
|
- name: Install, build, and upload your site
|
||||||
uses: withastro/action@v6
|
uses: withastro/action@v6
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -31,21 +31,23 @@ jobs:
|
|||||||
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
||||||
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
||||||
|
|
||||||
- name: Create Pull Request for Updated JSON Links
|
- name: Create Pull Request for Updated Docs and JSON Links
|
||||||
id: cpr
|
id: cpr
|
||||||
uses: peter-evans/create-pull-request@v8
|
uses: peter-evans/create-pull-request@v8
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.AUTO_MERGE }}
|
token: ${{ secrets.AUTO_MERGE }}
|
||||||
commit-message: 'chore: Update documentation links in JSON configs'
|
commit-message: 'chore: Update generated dev docs and JSON links'
|
||||||
title: 'chore: Update documentation links in JSON configs'
|
title: 'chore: Update generated dev docs and JSON links'
|
||||||
body: 'Automated update of documentation links in JSON configs from pre-release build'
|
body: 'Automated update of generated documentation and JSON config links from pre-release build'
|
||||||
branch: docs-update
|
branch: docs-update
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
add-paths: |
|
add-paths: |
|
||||||
|
docs/src/content/docs/code-reference/
|
||||||
config/tweaks.json
|
config/tweaks.json
|
||||||
config/feature.json
|
config/feature.json
|
||||||
labels: |
|
labels: |
|
||||||
automated
|
automated
|
||||||
|
documentation
|
||||||
skip-changelog
|
skip-changelog
|
||||||
|
|
||||||
- name: Check outputs
|
- name: Check outputs
|
||||||
|
|||||||
@@ -13,8 +13,3 @@ desktop.ini
|
|||||||
|
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
# hugo files (archived docs)
|
|
||||||
docs-old/public/
|
|
||||||
docs-old/.hugo_build.lock
|
|
||||||
docs-old/resources/
|
|
||||||
|
|||||||
@@ -4,35 +4,22 @@ Drop-in operating instructions for coding agents. Read this file before every ta
|
|||||||
|
|
||||||
**Working code only. Finish the job. Plausibility is not correctness.**
|
**Working code only. Finish the job. Plausibility is not correctness.**
|
||||||
|
|
||||||
This repository follows the AGENTS.md convention: these instructions are for Codex, Claude Code, Cursor, Windsurf, Copilot, Aider, Devin, Amp, and other coding agents that read `AGENTS.md`.
|
`SPEC.md` in the repository root is the project contract — read it for what WinUtil is and how it's architected. This file covers how to work on it.
|
||||||
|
|
||||||
## 0. Non-Negotiables
|
## 0. Non-Negotiables
|
||||||
|
|
||||||
These rules override everything else in this file when in conflict:
|
These rules override everything else in this file when in conflict:
|
||||||
|
|
||||||
1. **Do not edit `winutil.ps1` directly.** It is generated build output. Change source files and compile.
|
1. **Do not edit `winutil.ps1` directly.** It is generated build output (see SPEC.md's Build Model). Change source files and compile.
|
||||||
2. **Do not commit `winutil.ps1`.** It is ignored locally and generated by GitHub Actions for releases.
|
2. **Do not commit `winutil.ps1`.** It is ignored locally and generated by GitHub Actions for releases.
|
||||||
3. **Never fabricate.** Do not invent file paths, function names, command output, test results, commit hashes, or API behavior. Read the file or run the command.
|
3. **Never touch `docs/src/content/docs/code-reference/tweaks/` or `docs/src/content/docs/code-reference/features/`.** Both are auto-generated (see SPEC.md's Docs Site). Edit the source JSON (`config/tweaks.json`, `config/feature.json`) or the relevant PowerShell function file instead. Other hand-written pages under `code-reference/` (e.g. `architecture.mdx`) are not touched by the generator and may be edited directly.
|
||||||
4. **Disagree when the premise is wrong.** Say what is wrong before acting on it.
|
4. **Never fabricate.** Do not invent file paths, function names, command output, test results, commit hashes, or API behavior. Read the file or run the command.
|
||||||
5. **Stop when genuinely ambiguous.** If two interpretations would produce materially different diffs, ask before editing.
|
5. **Disagree when the premise is wrong.** Say what is wrong before acting on it.
|
||||||
6. **Touch only what the task requires.** No drive-by refactors, formatting sweeps, or unrelated cleanup.
|
6. **Stop when genuinely ambiguous.** If two interpretations would produce materially different diffs, ask before editing.
|
||||||
7. **Verify before saying done.** A plausible-looking diff is not proof.
|
7. **Touch only what the task requires.** No drive-by refactors, formatting sweeps, or unrelated cleanup.
|
||||||
|
8. **Verify before saying done.** A plausible-looking diff is not proof.
|
||||||
|
|
||||||
## 1. Project Context
|
## 1. Key Commands
|
||||||
|
|
||||||
WinUtil is a Windows PowerShell utility with a WPF interface. The repository is maintained as modular source, but the distributed artifact is one compiled PowerShell script.
|
|
||||||
|
|
||||||
### Stack
|
|
||||||
|
|
||||||
- Language: Windows PowerShell / PowerShell.
|
|
||||||
- UI: WPF via `xaml/inputXML.xaml`.
|
|
||||||
- Configuration: JSON files under `config/`.
|
|
||||||
- Tests: Pester tests under `pester/`.
|
|
||||||
- Lint: PowerShell Script Analyzer with settings in `lint/PSScriptAnalyser.ps1`.
|
|
||||||
- Docs: Hugo site under `docs/`.
|
|
||||||
- Release artifact: generated root `winutil.ps1`.
|
|
||||||
|
|
||||||
### Key Commands
|
|
||||||
|
|
||||||
- Compile:
|
- Compile:
|
||||||
```powershell
|
```powershell
|
||||||
@@ -42,48 +29,47 @@ WinUtil is a Windows PowerShell utility with a WPF interface. The repository is
|
|||||||
```powershell
|
```powershell
|
||||||
.\Compile.ps1 -Run
|
.\Compile.ps1 -Run
|
||||||
```
|
```
|
||||||
|
- Install the supported Pester version (one-time). `-SkipPublisherCheck` is required because Windows ships an inbox Pester 3.4.0 that is catalog-signed, and PowerShell Gallery's Pester 5.8.0 is Authenticode-signed — `Install-Module` refuses the upgrade without it. This does not skip download integrity (still HTTPS + NuGet package hash verification); `-Repository PSGallery` pins the trusted source explicitly rather than relying on whatever repositories happen to be registered:
|
||||||
|
```powershell
|
||||||
|
Install-Module -Name Pester -RequiredVersion 5.8.0 -Repository PSGallery -Scope CurrentUser -Force -SkipPublisherCheck
|
||||||
|
```
|
||||||
- Run tests:
|
- Run tests:
|
||||||
```powershell
|
```powershell
|
||||||
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
||||||
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI
|
||||||
```
|
```
|
||||||
- Run Script Analyzer with project settings when available:
|
- Run Script Analyzer with project settings when available. If a locally compiled `winutil.ps1` exists, delete it first — `lint/PSScriptAnalyser.ps1` only excludes rules, not files, so `-Recurse` would also lint the generated script and produce noise against line numbers that don't map to any source file:
|
||||||
```powershell
|
```powershell
|
||||||
Invoke-ScriptAnalyzer -Path . -Settings .\lint\PSScriptAnalyser.ps1 -Recurse
|
Invoke-ScriptAnalyzer -Path . -Settings .\lint\PSScriptAnalyser.ps1 -Recurse
|
||||||
```
|
```
|
||||||
|
- Docs site dev server (run from `docs/`; see Section 2 for why this goes through Docker):
|
||||||
|
```powershell
|
||||||
|
docker compose up winutil-astro
|
||||||
|
```
|
||||||
|
- Docs site production build (run from `docs/`):
|
||||||
|
```powershell
|
||||||
|
docker compose run --rm winutil-astro npm run build
|
||||||
|
```
|
||||||
|
|
||||||
Prefer the narrowest useful verification while iterating. Use the full relevant check before finishing.
|
Prefer the narrowest useful verification while iterating. Use the full relevant check before finishing.
|
||||||
|
|
||||||
## 2. Source Of Truth
|
## 2. Dependency Installs, Builds, And Dev Servers
|
||||||
|
|
||||||
Make durable changes only in files consumed by `Compile.ps1` or in documentation/test files:
|
Given the current wave of npm/pnpm/yarn supply-chain worms (malicious postinstall/preinstall scripts, credential-stealing packages): **never run npm/pnpm/yarn/npx directly on the host, full stop.** The docs site (`docs/`) is the only npm-based project in this repo; always run its tooling inside Docker via `docs/Dockerfile` and `docs/docker-compose.yml` (service `winutil-astro`).
|
||||||
|
|
||||||
- `scripts/start.ps1` for startup/bootstrap code.
|
- Never run `npm install`, `npm run <script>`, `npx <pkg>`, `pnpm`, or `yarn` directly on the host shell in `docs/`. Use `docker compose run --rm winutil-astro <command>` / `docker compose up winutil-astro` instead (see Section 1 for the exact commands).
|
||||||
- `functions/public/*.ps1` for UI-facing and user-facing workflows.
|
- If a task needs a new docs dependency, add it to `docs/package.json` yourself, then rebuild the image and drop the `node_modules` volume so it repopulates from the new image (run from `docs/`): `docker compose build winutil-astro`, then `docker compose down -v`. Docker only seeds a named volume from the image the first time it's created, so a plain rebuild silently leaves the old `node_modules` in place. Don't install packages on the host, even temporarily, "just to check something."
|
||||||
- `functions/private/*.ps1` for internal helpers.
|
- If Docker isn't available on the host, propose the install command for the current OS and wait for confirmation before running it — don't fall back to running npm on the host instead. If the daemon just isn't running (Docker is installed but not started), tell the user rather than trying to start it yourself.
|
||||||
- `config/*.json` for applications, tweaks, features, DNS, presets, navigation, themes, and related declarative data.
|
- Treat any `postinstall`/`preinstall` lifecycle script in a new dependency as worth flagging to the user before installing — summarize what it does.
|
||||||
- `xaml/inputXML.xaml` for the WPF UI layout.
|
- Don't put real secrets anywhere under `docs/`. `docs/.dockerignore` only trims what `docker build` copies into the image — it does not affect the `docker compose` bind mount, which exposes the entire `docs/` directory (including any `.env` file) inside the container for every dev/build/preview command (see the next bullet). There is no "keep it out unless mounted" middle ground here.
|
||||||
- `tools/autounattend.xml` for the embedded unattended Windows setup template.
|
- The container mounts `docs/` as a volume, so file edits on the host are reflected inside the container immediately — no rebuild needed for normal code changes, only when `docs/package.json`/`docs/package-lock.json` change (see the rebuild-and-drop-volume steps above).
|
||||||
- `scripts/main.ps1` for the final entrypoint and GUI initialization logic appended during compile.
|
- This Docker requirement is specific to `docs/`. The rest of the repo is PowerShell (`Compile.ps1`, Pester, Script Analyzer) and runs directly on the host per Section 1.
|
||||||
- `pester/*.Tests.ps1` for automated checks.
|
|
||||||
- `docs/` for Hugo documentation.
|
|
||||||
|
|
||||||
If behavior changes require the compiled script to change, update these source files and run `.\Compile.ps1` only to verify generation.
|
## 3. Source Of Truth
|
||||||
|
|
||||||
## 3. Build Model
|
For changes that affect the compiled WinUtil script, make them only in the source files described in SPEC.md's Repository Layout — never in `winutil.ps1` itself. If behavior changes require the compiled script to change, update the source files and run `.\Compile.ps1` only to verify generation.
|
||||||
|
|
||||||
`Compile.ps1` combines the repository sources into `winutil.ps1` in this order:
|
This scoping applies to compiled-script behavior only. Repository metadata — `AGENTS.md`, `SPEC.md`, `CLAUDE.md`/`GEMINI.md`/`.github/copilot-instructions.md`, `.github/workflows/`, and the root `.gitignore` — is edited directly when a task requires it, per the other sections of this file.
|
||||||
|
|
||||||
1. Read `scripts/start.ps1` and replace `#{replaceme}` with the current `yy.MM.dd` build date.
|
|
||||||
2. Append every file under `functions/` recursively.
|
|
||||||
3. Convert each `config/*.json` file into embedded `$sync.configs` objects.
|
|
||||||
4. Special-case `config/applications.json` so keys receive the `WPFInstall` prefix in compiled config.
|
|
||||||
5. Embed `xaml/inputXML.xaml` into `$inputXML`.
|
|
||||||
6. Embed `tools/autounattend.xml` into `$WinUtilAutounattendXml`.
|
|
||||||
7. Append `scripts/main.ps1`.
|
|
||||||
8. Write the result to root `winutil.ps1`.
|
|
||||||
|
|
||||||
Because the final script is concatenated, do not rely on runtime module imports or source-relative dot-sourcing unless the compiled script will also contain the required code/data.
|
|
||||||
|
|
||||||
## 4. Before Editing
|
## 4. Before Editing
|
||||||
|
|
||||||
@@ -97,11 +83,10 @@ Because the final script is concatenated, do not rely on runtime module imports
|
|||||||
|
|
||||||
- Prefer the minimum code that solves the stated problem.
|
- Prefer the minimum code that solves the stated problem.
|
||||||
- Keep PowerShell functions in one function file when practical, with the file name matching the primary function name.
|
- Keep PowerShell functions in one function file when practical, with the file name matching the primary function name.
|
||||||
- Use approved PowerShell verb-noun names and follow the existing `WPF` / `WinUtil` naming conventions.
|
- Use approved PowerShell verb-noun names and follow the existing `WPF` / `WinUtil` naming conventions; keep UI event handler names aligned with XAML element names per SPEC.md's UI And Event Contract.
|
||||||
- Keep UI event handler names aligned with XAML element names. A button named `WPFExampleButton` is typically handled by `Invoke-WPFExampleButton`.
|
- Use `$sync` for shared state and UI references, consistent with SPEC.md's Runtime Model.
|
||||||
- Use `$sync` for shared state and UI references, consistent with the existing runspace model.
|
|
||||||
- Update WPF controls through the UI dispatcher when running work in a background runspace.
|
- Update WPF controls through the UI dispatcher when running work in a background runspace.
|
||||||
- Keep config-driven features in JSON when they fit the existing schema instead of hard-coding lists in PowerShell.
|
- Keep config-driven features in JSON when they fit the existing schema instead of hard-coding lists in PowerShell; follow SPEC.md's Configuration Contract for required fields and key-renaming rules.
|
||||||
- Preserve undo/original-state data for tweaks so users can reverse changes.
|
- Preserve undo/original-state data for tweaks so users can reverse changes.
|
||||||
- Do not add abstractions, configurability, hooks, or "future extensibility" unless the task needs them now.
|
- Do not add abstractions, configurability, hooks, or "future extensibility" unless the task needs them now.
|
||||||
- Clean up orphans created by your own changes, such as unused variables or functions made obsolete by the edit.
|
- Clean up orphans created by your own changes, such as unused variables or functions made obsolete by the edit.
|
||||||
@@ -109,7 +94,7 @@ Because the final script is concatenated, do not rely on runtime module imports
|
|||||||
|
|
||||||
## 6. Runtime And Safety Rules
|
## 6. Runtime And Safety Rules
|
||||||
|
|
||||||
- WinUtil performs system-level Windows changes. Treat registry, services, AppX removal, package manager, Windows Update, ISO, and unattended setup changes as high-risk.
|
- WinUtil performs system-level Windows changes; treat registry, services, AppX removal, package manager, Windows Update, ISO, and unattended setup changes as high-risk (see SPEC.md's Safety Requirements).
|
||||||
- Prefer existing helper functions for WinGet, Chocolatey, registry, services, progress, and UI updates.
|
- Prefer existing helper functions for WinGet, Chocolatey, registry, services, progress, and UI updates.
|
||||||
- Keep tweaks reversible where the schema supports it by including original values or original states.
|
- Keep tweaks reversible where the schema supports it by including original values or original states.
|
||||||
- Never modify a user's original ISO in-place; follow existing copy/mount/export patterns.
|
- Never modify a user's original ISO in-place; follow existing copy/mount/export patterns.
|
||||||
@@ -136,24 +121,26 @@ Define success in terms that can be checked, then check it.
|
|||||||
- Read command output. Do not report tests as passing unless they actually passed.
|
- Read command output. Do not report tests as passing unless they actually passed.
|
||||||
- If verification fails, fix the cause rather than weakening the test.
|
- If verification fails, fix the cause rather than weakening the test.
|
||||||
|
|
||||||
If a check cannot be run, say exactly why and what residual risk remains.
|
If a check cannot be run, say exactly why and what residual risk remains. See SPEC.md's Testing And CI for what GitHub Actions runs on every push.
|
||||||
|
|
||||||
## 9. Generated Files And Git Hygiene
|
## 9. Generated Files And Git Hygiene
|
||||||
|
|
||||||
- Treat local `winutil.ps1` changes as disposable compile output.
|
- Treat local `winutil.ps1` changes as disposable compile output.
|
||||||
- Never stage or commit `winutil.ps1`, `docs/public/`, `docs/resources/`, `binary/`, editor folders, or other ignored build artifacts.
|
- Never stage or commit `winutil.ps1`, `binary/`, or anything else ignored by the root `.gitignore` or `docs/.gitignore` — read those files rather than assuming. `docs/public/` is tracked source for static assets, not generated output.
|
||||||
- Do not remove `.gitignore` rules that keep generated artifacts out of Git.
|
- Do not remove `.gitignore` rules that keep generated artifacts out of Git.
|
||||||
- Before finishing, check `git status --short` and separate your changes from pre-existing user changes.
|
- Before finishing, check `git status --short` and separate your changes from pre-existing user changes.
|
||||||
- Do not revert user changes unless explicitly asked.
|
- Do not revert user changes unless explicitly asked.
|
||||||
- Commit messages, when requested, should be descriptive: short subject under 72 characters, body explaining why when needed.
|
- Commit messages, when requested, should be descriptive: short subject under 72 characters, body explaining why when needed.
|
||||||
|
- When committing, split changes into small, logical commits rather than one large commit, so each commit's diff is reviewable as a single group of related changes.
|
||||||
|
|
||||||
## 10. Documentation Expectations
|
## 10. Documentation Expectations
|
||||||
|
|
||||||
- Update `docs/content/` when user-facing behavior changes.
|
- Update `docs/src/content/docs/guides/` when user-facing behavior changes.
|
||||||
- Update developer docs when architecture, build flow, config schema, or contribution workflow changes.
|
- Update `docs/src/content/docs/code-reference/architecture.mdx` and other hand-written developer docs when architecture, build flow, config schema, or contribution workflow changes — but never hand-edit the auto-generated `code-reference/tweaks/` or `code-reference/features/` subfolders (see Non-Negotiables).
|
||||||
|
- Keep sidebar entries in `docs/astro.config.mjs` in sync with page slugs (see SPEC.md's Docs Site).
|
||||||
- Keep README changes brief and high-level.
|
- Keep README changes brief and high-level.
|
||||||
- Put detailed user and developer documentation under `docs/`.
|
- Put detailed user and developer documentation under `docs/`.
|
||||||
- Keep `SPEC.md` aligned with build/runtime contract changes.
|
- Keep SPEC.md aligned with project/architecture changes, and this file aligned with process changes.
|
||||||
|
|
||||||
## 11. Communication Style
|
## 11. Communication Style
|
||||||
|
|
||||||
@@ -187,6 +174,7 @@ When the user corrects an agent approach, add or tighten one concrete rule here
|
|||||||
- Import Pester 5.8.0 before running tests so `Invoke-Pester -Output Detailed -CI` does not resolve to Windows' inbox Pester 3.4.0.
|
- Import Pester 5.8.0 before running tests so `Invoke-Pester -Output Detailed -CI` does not resolve to Windows' inbox Pester 3.4.0.
|
||||||
- Keep package install/uninstall process launches simple unless explicitly requested; do not add a separate stdout/stderr process logging helper for winget or Chocolatey.
|
- Keep package install/uninstall process launches simple unless explicitly requested; do not add a separate stdout/stderr process logging helper for winget or Chocolatey.
|
||||||
- When the active log file is owned by `Start-Transcript`, do not call `Add-Content` against that file; write to host output so the transcript captures the line in the same log file without recording a terminating-error diagnostic.
|
- When the active log file is owned by `Start-Transcript`, do not call `Add-Content` against that file; write to host output so the transcript captures the line in the same log file without recording a terminating-error diagnostic.
|
||||||
|
- Keep UI helpers such as `Invoke-WPFUIThread` and `Set-WinUtilTweaksProgressIndicator` safe to call without a window; the `-Preset` and `-Config` paths run the workflows before the form is created and before PresentationCore is loaded.
|
||||||
- Log install/uninstall package names and package-manager IDs before queuing background runspace work; do not rely on runspace host output for the package identity.
|
- Log install/uninstall package names and package-manager IDs before queuing background runspace work; do not rely on runspace host output for the package identity.
|
||||||
- For Win11 Creator, start each new ISO modification in a fresh `WinUtil_Win11ISO_*` temp directory; existing-work detection is only for resuming/exporting already modified media.
|
- For Win11 Creator, start each new ISO modification in a fresh `WinUtil_Win11ISO_*` temp directory; existing-work detection is only for resuming/exporting already modified media.
|
||||||
- For Win11 Creator driver injection, keep offline WIM servicing to one mount, one `/Add-Driver`, and one commit; do not export editions or run unrelated WIM cleanup, and reject damaged metadata before ISO export.
|
- For Win11 Creator driver injection, keep offline WIM servicing to one mount, one `/Add-Driver`, and one commit; do not export editions or run unrelated WIM cleanup, and reject damaged metadata before ISO export.
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# GEMINI.md
|
||||||
|
|
||||||
|
Read `AGENTS.md` in the repository root for operating instructions before doing anything else.
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
A curated compilation of Windows system tasks streamline **installs**, debloat with **tweaks**, troubleshoot with **config**, and configure **Windows updates**. Run it fresh on every new Windows install.
|
A curated compilation of Windows system tasks streamline **installs**, debloat with **tweaks**, troubleshoot with **config**, and configure **Windows updates**. Run it fresh on every new Windows install.
|
||||||
|
|
||||||
<img width="1200" height="942" alt="image" src="https://github.com/user-attachments/assets/b809c261-2798-4203-9e34-e7cbe10dc44f" />
|

|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,10 +1,37 @@
|
|||||||
# SPEC.md
|
# SPEC.md
|
||||||
|
|
||||||
## Project Contract
|
Project contract for WinUtil — what the project is, how it's built, and how it runs. Written for anyone, human or AI, who needs to understand the project itself.
|
||||||
|
|
||||||
WinUtil is a Windows PowerShell utility with a WPF interface. The repository is maintained as modular source files, but the released artifact is a single generated `winutil.ps1` script.
|
`AGENTS.md` in the repository root points here for these facts, and separately covers how an agent should behave while working in this repo. This file does not change based on who's reading it.
|
||||||
|
|
||||||
The compiled `winutil.ps1` is not source code for editing or review. It is generated by `Compile.ps1` and produced during release automation. All durable changes must be made to the source files that feed the compiler.
|
## Project Context
|
||||||
|
|
||||||
|
WinUtil is a Windows PowerShell utility with a WPF interface. The repository is maintained as modular source, but the distributed artifact is one compiled PowerShell script.
|
||||||
|
|
||||||
|
### Stack
|
||||||
|
|
||||||
|
- Language: Windows PowerShell / PowerShell.
|
||||||
|
- UI: WPF via `xaml/inputXML.xaml`.
|
||||||
|
- Configuration: JSON files under `config/`.
|
||||||
|
- Tests: Pester tests under `pester/`.
|
||||||
|
- Lint: PowerShell Script Analyzer with settings in `lint/PSScriptAnalyser.ps1`.
|
||||||
|
- Docs: Astro + Starlight site under `docs/`, built independently of `Compile.ps1` (its own `package.json`/`node_modules`).
|
||||||
|
- Release artifact: generated root `winutil.ps1`.
|
||||||
|
|
||||||
|
### Repository Layout
|
||||||
|
|
||||||
|
- `Compile.ps1`: build script that creates `winutil.ps1`.
|
||||||
|
- `scripts/start.ps1`: startup/bootstrap segment used at the beginning of the compiled script.
|
||||||
|
- `scripts/main.ps1`: main entrypoint appended at the end of the compiled script.
|
||||||
|
- `functions/public/`: public/UI-facing PowerShell functions.
|
||||||
|
- `functions/private/`: internal helper PowerShell functions.
|
||||||
|
- `config/`: JSON configuration consumed at compile time and embedded into `$sync.configs`.
|
||||||
|
- `xaml/inputXML.xaml`: WPF UI markup embedded into the compiled script.
|
||||||
|
- `tools/autounattend.xml`: unattended setup XML embedded for Windows ISO workflows.
|
||||||
|
- `pester/`: Pester tests for config and function checks.
|
||||||
|
- `lint/PSScriptAnalyser.ps1`: PowerShell Script Analyzer settings.
|
||||||
|
- `docs/`: Astro + Starlight documentation site, with its own `package.json` and build independent of `Compile.ps1`.
|
||||||
|
- `winutil.ps1`: ignored generated build artifact.
|
||||||
|
|
||||||
## Goals
|
## Goals
|
||||||
|
|
||||||
@@ -21,85 +48,65 @@ The compiled `winutil.ps1` is not source code for editing or review. It is gener
|
|||||||
- The GUI is not a separate packaged desktop application in this repository's normal release path.
|
- The GUI is not a separate packaged desktop application in this repository's normal release path.
|
||||||
- Generated files should not be reviewed as source changes.
|
- Generated files should not be reviewed as source changes.
|
||||||
|
|
||||||
## Repository Layout
|
## Build Model
|
||||||
|
|
||||||
- `Compile.ps1`: build script that creates `winutil.ps1`.
|
`Compile.ps1` combines the repository sources into `winutil.ps1` in this order:
|
||||||
- `scripts/start.ps1`: startup/bootstrap segment used at the beginning of the compiled script.
|
|
||||||
- `scripts/main.ps1`: main entrypoint appended at the end of the compiled script.
|
|
||||||
- `functions/public/`: public/UI-facing PowerShell functions.
|
|
||||||
- `functions/private/`: internal helper PowerShell functions.
|
|
||||||
- `config/`: JSON configuration consumed at compile time and embedded into `$sync.configs`.
|
|
||||||
- `xaml/inputXML.xaml`: WPF UI markup embedded into the compiled script.
|
|
||||||
- `tools/autounattend.xml`: unattended setup XML embedded for Windows ISO workflows.
|
|
||||||
- `pester/`: Pester tests for config and function checks.
|
|
||||||
- `lint/PSScriptAnalyser.ps1`: PowerShell Script Analyzer settings.
|
|
||||||
- `docs/`: Hugo documentation site.
|
|
||||||
- `winutil.ps1`: ignored generated build artifact.
|
|
||||||
|
|
||||||
## Compile Specification
|
1. Read `scripts/start.ps1` and replace `#{replaceme}` with the current `yy.MM.dd` build date.
|
||||||
|
2. Append every file under `functions/` recursively.
|
||||||
|
3. Convert each `config/*.json` file into embedded `$sync.configs` objects.
|
||||||
|
4. Special-case `config/applications.json` so keys receive the `WPFInstall` prefix in compiled config.
|
||||||
|
5. Embed `xaml/inputXML.xaml` into `$inputXML`.
|
||||||
|
6. Embed `tools/autounattend.xml` into `$WinUtilAutounattendXml`.
|
||||||
|
7. Append `scripts/main.ps1`.
|
||||||
|
8. Write the result to root `winutil.ps1`.
|
||||||
|
|
||||||
`Compile.ps1` must produce a standalone root `winutil.ps1` by combining all required project files.
|
Because the final script is concatenated, code cannot rely on runtime module imports or source-relative dot-sourcing unless the compiled script will also contain the required code/data.
|
||||||
|
|
||||||
The compile flow is:
|
|
||||||
|
|
||||||
1. Initialize shared state with `$sync = [Hashtable]::Synchronized(@{})` and `$sync.configs = @{}`.
|
|
||||||
2. Read `scripts/start.ps1`.
|
|
||||||
3. Replace `#{replaceme}` in startup code with the current `yy.MM.dd` build date.
|
|
||||||
4. Append raw content from all files under `functions/` recursively.
|
|
||||||
5. For every file in `config/`, parse JSON and embed it into `$sync.configs.<basename>`.
|
|
||||||
6. Special-case `config/applications.json` so application keys are emitted with the `WPFInstall` prefix.
|
|
||||||
7. Embed `xaml/inputXML.xaml` as `$inputXML`.
|
|
||||||
8. Embed `tools/autounattend.xml` as `$WinUtilAutounattendXml`.
|
|
||||||
9. Append `scripts/main.ps1`.
|
|
||||||
10. Write the combined script to `winutil.ps1`.
|
|
||||||
11. If `-Run` is supplied, execute the generated script.
|
|
||||||
|
|
||||||
The generated script must have everything it needs from repository sources embedded or appended by this process.
|
|
||||||
|
|
||||||
## Runtime Model
|
## Runtime Model
|
||||||
|
|
||||||
- WinUtil runs in PowerShell on Windows and uses WPF for the UI.
|
- WinUtil runs in PowerShell on Windows and uses WPF for the UI.
|
||||||
- Shared mutable state is stored in `$sync`, including configs, UI element references, runspace state, selections, and progress.
|
- Shared mutable state is stored in `$sync`, including configs, UI element references, runspace state, selections, and progress.
|
||||||
- Long-running operations should use runspaces or existing async patterns so the UI remains responsive.
|
- Long-running operations use runspaces or existing async patterns so the UI remains responsive.
|
||||||
- UI updates from background work must be dispatched back to the WPF UI thread.
|
- UI updates from background work are dispatched back to the WPF UI thread.
|
||||||
- Declarative features such as apps, tweaks, presets, DNS providers, and navigation should stay in `config/*.json` unless code is required.
|
- Declarative features such as apps, tweaks, presets, DNS providers, and navigation stay in `config/*.json` unless code is required.
|
||||||
|
|
||||||
## UI And Event Contract
|
## UI And Event Contract
|
||||||
|
|
||||||
- UI layout lives in `xaml/inputXML.xaml`.
|
- UI layout lives in `xaml/inputXML.xaml`.
|
||||||
- Named WPF controls are discovered and stored in `$sync`.
|
- Named WPF controls are discovered and stored in `$sync`.
|
||||||
- Button/action wiring follows existing naming conventions, where an element named like `WPFThingButton` maps to a function named like `Invoke-WPFThingButton`.
|
- Button/action wiring follows a naming convention: an element named like `WPFThingButton` maps to a function named like `Invoke-WPFThingButton`.
|
||||||
- When adding controls, ensure the XAML name, config key, and PowerShell function names line up with the existing event system.
|
|
||||||
|
|
||||||
## Configuration Contract
|
## Configuration Contract
|
||||||
|
|
||||||
Config files must remain valid JSON and compile cleanly through `ConvertFrom-Json`.
|
- Config files must remain valid JSON and compile cleanly through `ConvertFrom-Json`.
|
||||||
|
- `config/applications.json` defines installable applications; each entry includes the fields expected by tests and UI code, such as package manager IDs, category, display content, description, and link.
|
||||||
`config/applications.json` defines installable applications. Each application entry should include the fields expected by tests and UI code, such as package manager IDs, category, display content, description, and link.
|
- `config/tweaks.json` defines Windows tweaks; registry and service changes include original values or original states when applicable so undo workflows can restore user systems.
|
||||||
|
- Preset and navigation files reference valid config keys. Renaming a config key requires updating all presets, UI references, docs, and code paths together.
|
||||||
`config/tweaks.json` defines Windows tweaks. Registry and service changes should include original values or original states when applicable so undo workflows can restore user systems.
|
|
||||||
|
|
||||||
Preset and navigation files should reference valid config keys. Avoid renaming config keys unless all presets, UI references, docs, and code paths are updated together.
|
|
||||||
|
|
||||||
## Safety Requirements
|
## Safety Requirements
|
||||||
|
|
||||||
- Registry, service, package manager, Windows Update, AppX removal, and ISO operations can affect the host system. Changes must be explicit, reversible where practical, and consistent with existing logging and confirmation patterns.
|
- Registry, service, package manager, Windows Update, AppX removal, and ISO operations affect the host system and are treated as high-risk.
|
||||||
- Tweak changes should include undo metadata when the schema supports it.
|
- Tweak changes include undo metadata when the schema supports it, so changes stay reversible.
|
||||||
- Package installation should prefer existing WinGet and Chocolatey helper functions.
|
- ISO workflows never modify the user's original ISO file; they work on copied/mounted content.
|
||||||
- ISO workflows must not modify the user's original ISO file; they should work on copied/mounted content following existing patterns.
|
|
||||||
|
## Docs Site (Astro)
|
||||||
|
|
||||||
|
- `docs/` is an Astro + Starlight site, independent of `Compile.ps1`'s build (its own `package.json`/`node_modules`, deployed via the `docs.yaml` GitHub Actions workflow to GitHub Pages).
|
||||||
|
- Pages live under `docs/src/content/docs/` (`.mdx`), organized into `guides/`, `code-reference/`, plus top-level pages like `faq.mdx`, `knownissues.mdx`, `contributing.mdx`, `index.mdx`.
|
||||||
|
- `docs/src/content/docs/code-reference/tweaks/` and `.../features/` are auto-generated by `tools/devdocs-generator.ps1` from `config/tweaks.json`/`config/feature.json` and the relevant PowerShell function files. Other pages under `code-reference/` (e.g. `architecture.mdx`) are hand-written and untouched by the generator.
|
||||||
|
- Sidebar entries in `docs/astro.config.mjs` must match actual page slugs under `docs/src/content/docs/`.
|
||||||
|
- `docs/public/` is tracked source for static assets (favicons, etc.), not generated output. Generated/ignored paths are listed in `docs/.gitignore` (`dist/`, `.astro/`, `node_modules/`, local env files).
|
||||||
|
- `docs/Dockerfile` and `docs/docker-compose.yml` (service `winutil-astro`) containerize the site's npm tooling; see AGENTS.md's Dependency Installs, Builds, And Dev Servers for why and how agents must use them instead of running npm on the host.
|
||||||
|
|
||||||
## Testing And CI
|
## Testing And CI
|
||||||
|
|
||||||
Expected validation for source changes:
|
|
||||||
|
|
||||||
- `.\Compile.ps1` verifies the compiler can generate `winutil.ps1`.
|
- `.\Compile.ps1` verifies the compiler can generate `winutil.ps1`.
|
||||||
- `.\Compile.ps1 -Run` compiles and launches the generated utility for manual GUI verification.
|
- `.\Compile.ps1 -Run` compiles and launches the generated utility for manual GUI verification.
|
||||||
- `Install-Module -Name Pester -RequiredVersion 5.8.0 -Scope CurrentUser -Force -SkipPublisherCheck` installs the supported Pester version.
|
- Pester 5.8.0 runs the suite under `pester/*.Tests.ps1`. GitHub Actions (`unittests.yaml`) installs Pester 5.8.0 fresh and runs with `-CI`, which produces `testResults.xml` and exits non-zero on failure.
|
||||||
- `Import-Module Pester -RequiredVersion 5.8.0 -Force; Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI` runs the Pester suite.
|
- GitHub Actions also runs PowerShell Script Analyzer with `lint/PSScriptAnalyser.ps1` on every push.
|
||||||
- GitHub Actions also runs a compile check and PowerShell Script Analyzer with `lint/PSScriptAnalyser.ps1`.
|
- The generated `winutil.ps1` may appear locally after compile. It remains ignored build output (see root `.gitignore`) and must not be committed.
|
||||||
|
|
||||||
The generated `winutil.ps1` may appear locally after compile. It remains ignored build output and must not be committed.
|
|
||||||
|
|
||||||
## Release Artifact
|
## Release Artifact
|
||||||
|
|
||||||
GitHub Actions is responsible for producing the release `winutil.ps1` from repository sources. A release should be considered valid only if the generated script came from the compile process, not from direct manual edits to `winutil.ps1`.
|
GitHub Actions is responsible for producing the release `winutil.ps1` from repository sources. A release is considered valid only if the generated script came from the compile process, not from direct manual edits to `winutil.ps1`.
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"adobe": {
|
"adobe": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Document",
|
||||||
"choco": "adobereader",
|
"choco": "adobereader",
|
||||||
"content": "Adobe Acrobat Reader",
|
"content": "Adobe Acrobat Reader",
|
||||||
"description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.",
|
"description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.",
|
||||||
@@ -125,6 +125,15 @@
|
|||||||
"winget": "Brave.Brave",
|
"winget": "Brave.Brave",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"bruno": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "bruno",
|
||||||
|
"content": "Bruno",
|
||||||
|
"description": "Bruno is a local-first API client that stores collections as plain text files for version control and collaboration.",
|
||||||
|
"link": "https://www.usebruno.com/",
|
||||||
|
"winget": "Bruno.Bruno",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"bulkcrapuninstaller": {
|
"bulkcrapuninstaller": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "bulk-crap-uninstaller",
|
"choco": "bulk-crap-uninstaller",
|
||||||
@@ -323,6 +332,15 @@
|
|||||||
"winget": "SpikeHD.Dorion",
|
"winget": "SpikeHD.Dorion",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"dockerdesktop": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "docker-desktop",
|
||||||
|
"content": "Docker Desktop",
|
||||||
|
"description": "Docker Desktop provides a local environment for building, running, and testing containerized applications on Windows.",
|
||||||
|
"link": "https://www.docker.com/products/docker-desktop/",
|
||||||
|
"winget": "Docker.DockerDesktop",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"dotnet6": {
|
"dotnet6": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "dotnet-6.0-runtime",
|
"choco": "dotnet-6.0-runtime",
|
||||||
@@ -458,6 +476,33 @@
|
|||||||
"winget": "flux.flux",
|
"winget": "flux.flux",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"foobar": {
|
||||||
|
"category": "Multimedia Tools",
|
||||||
|
"choco": "foobar2000",
|
||||||
|
"content": "foobar2000 (Music Player)",
|
||||||
|
"description": "foobar2000 is a highly customizable and extensible music player for Windows, known for its modular design and advanced features.",
|
||||||
|
"link": "https://www.foobar2000.org/",
|
||||||
|
"winget": "PeterPawlowski.foobar2000",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
|
"fnm": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "fnm",
|
||||||
|
"content": "Fast Node Manager",
|
||||||
|
"description": "Fast Node Manager (fnm) is a fast, cross-platform tool for installing and switching between Node.js versions.",
|
||||||
|
"link": "https://github.com/Schniz/fnm",
|
||||||
|
"winget": "Schniz.fnm",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
|
"foxpdfreader": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "foxitreader",
|
||||||
|
"content": "Foxit PDF Reader",
|
||||||
|
"description": "Foxit PDF Reader is a free PDF viewer with a familiar ribbon-style interface.",
|
||||||
|
"link": "https://www.foxit.com/pdf-reader/",
|
||||||
|
"winget": "Foxit.FoxitReader",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"geforcenow": {
|
"geforcenow": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "nvidia-geforce-now",
|
"choco": "nvidia-geforce-now",
|
||||||
@@ -485,6 +530,24 @@
|
|||||||
"winget": "Git.Git",
|
"winget": "Git.Git",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"gitextensions": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "gitextensions",
|
||||||
|
"content": "Git Extensions",
|
||||||
|
"description": "Git Extensions is a graphical Git client for Windows with repository, history, and commit management tools.",
|
||||||
|
"link": "https://gitextensions.github.io/",
|
||||||
|
"winget": "GitExtensionsTeam.GitExtensions",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
|
"githubcli": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "gh",
|
||||||
|
"content": "GitHub CLI",
|
||||||
|
"description": "GitHub CLI brings pull requests, issues, releases, and other GitHub workflows to the terminal.",
|
||||||
|
"link": "https://cli.github.com/",
|
||||||
|
"winget": "GitHub.cli",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"githubdesktop": {
|
"githubdesktop": {
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"choco": "git;github-desktop",
|
"choco": "git;github-desktop",
|
||||||
@@ -701,6 +764,15 @@
|
|||||||
"winget": "sylikc.JPEGView",
|
"winget": "sylikc.JPEGView",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"joplin": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "joplin",
|
||||||
|
"content": "Joplin",
|
||||||
|
"description": "Joplin is an open-source note-taking and to-do application with synchronization capabilities.",
|
||||||
|
"link": "https://joplinapp.org/",
|
||||||
|
"winget": "Joplin.Joplin",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"keepassxc": {
|
"keepassxc": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "keepassxc",
|
"choco": "keepassxc",
|
||||||
@@ -738,7 +810,7 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"libreoffice": {
|
"libreoffice": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Document",
|
||||||
"choco": "libreoffice-fresh",
|
"choco": "libreoffice-fresh",
|
||||||
"content": "LibreOffice",
|
"content": "LibreOffice",
|
||||||
"description": "LibreOffice is a powerful and free office suite, compatible with other major office suites.",
|
"description": "LibreOffice is a powerful and free office suite, compatible with other major office suites.",
|
||||||
@@ -773,6 +845,14 @@
|
|||||||
"winget": "mpc-qt.mpc-qt",
|
"winget": "mpc-qt.mpc-qt",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"mpv": {
|
||||||
|
"category": "Multimedia Tools",
|
||||||
|
"content": "mpv",
|
||||||
|
"description": "mpv is a free, open source, and cross-platform media player supporting a wide variety of media formats, codecs, and subtitle types.",
|
||||||
|
"link": "https://mpv.io/",
|
||||||
|
"winget": "shinchiro.mpv",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"matrix": {
|
"matrix": {
|
||||||
"category": "Communications",
|
"category": "Communications",
|
||||||
"choco": "element-desktop",
|
"choco": "element-desktop",
|
||||||
@@ -882,9 +962,9 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"naps2": {
|
"naps2": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Document",
|
||||||
"choco": "naps2",
|
"choco": "naps2",
|
||||||
"content": "NAPS2 (Document Scanner)",
|
"content": "NAPS2 (Scanner)",
|
||||||
"description": "NAPS2 is a document scanning application that simplifies the process of creating electronic documents.",
|
"description": "NAPS2 is a document scanning application that simplifies the process of creating electronic documents.",
|
||||||
"link": "https://www.naps2.com/",
|
"link": "https://www.naps2.com/",
|
||||||
"winget": "Cyanfish.NAPS2",
|
"winget": "Cyanfish.NAPS2",
|
||||||
@@ -980,7 +1060,7 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"obsidian": {
|
"obsidian": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Document",
|
||||||
"choco": "obsidian",
|
"choco": "obsidian",
|
||||||
"content": "Obsidian",
|
"content": "Obsidian",
|
||||||
"description": "Obsidian is a powerful note-taking and knowledge management application.",
|
"description": "Obsidian is a powerful note-taking and knowledge management application.",
|
||||||
@@ -988,6 +1068,15 @@
|
|||||||
"winget": "Obsidian.Obsidian",
|
"winget": "Obsidian.Obsidian",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"okular": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "okular",
|
||||||
|
"content": "Okular",
|
||||||
|
"description": "Okular is a versatile document viewer with advanced features.",
|
||||||
|
"link": "https://okular.kde.org/",
|
||||||
|
"winget": "KDE.Okular",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"onedrive": {
|
"onedrive": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "onedrive",
|
"choco": "onedrive",
|
||||||
@@ -998,7 +1087,7 @@
|
|||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"onlyoffice": {
|
"onlyoffice": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Document",
|
||||||
"choco": "onlyoffice",
|
"choco": "onlyoffice",
|
||||||
"content": "ONLYOFFICE Desktop",
|
"content": "ONLYOFFICE Desktop",
|
||||||
"description": "ONLYOFFICE Desktop is a comprehensive office suite for document editing and collaboration.",
|
"description": "ONLYOFFICE Desktop is a comprehensive office suite for document editing and collaboration.",
|
||||||
@@ -1087,6 +1176,42 @@
|
|||||||
"winget": "Giorgiotani.Peazip",
|
"winget": "Giorgiotani.Peazip",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"pdf-xchange": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "pdfxchangeeditor",
|
||||||
|
"content": "PDF-XChange Editor",
|
||||||
|
"description": "A comprehensive Windows-based software suite and editor for creating, viewing, editing, annotating, and signing PDF files.",
|
||||||
|
"link": "https://www.pdf-xchange.com/",
|
||||||
|
"winget": "TrackerSoftware.PDF-XChangeEditor",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
|
"pdf24creator": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "pdf24",
|
||||||
|
"content": "PDF24 Creator",
|
||||||
|
"description": "Free and easy-to-use online/desktop PDF tools that make you more productive",
|
||||||
|
"link": "https://tools.pdf24.org/en/creator",
|
||||||
|
"winget": "geeksoftwareGmbH.PDF24Creator",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
|
"pdfgear": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "pdfgear",
|
||||||
|
"content": "PDFgear",
|
||||||
|
"description": "PDFgear is a piece of full-featured PDF management software for Windows, macOS, and mobile, and it's completely free to use.",
|
||||||
|
"link": "https://www.pdfgear.com/",
|
||||||
|
"winget": "PDFgear.PDFgear",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
|
"pdfsam": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "pdfsam",
|
||||||
|
"content": "PDFsam Basic",
|
||||||
|
"description": "PDFsam Basic is a free and open-source tool for splitting, merging, and rotating PDF files.",
|
||||||
|
"link": "https://pdfsam.org/",
|
||||||
|
"winget": "PDFsam.PDFsam",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"playnite": {
|
"playnite": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "playnite",
|
"choco": "playnite",
|
||||||
@@ -1123,6 +1248,15 @@
|
|||||||
"winget": "JanDeDobbeleer.OhMyPosh",
|
"winget": "JanDeDobbeleer.OhMyPosh",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"postman": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "postman",
|
||||||
|
"content": "Postman",
|
||||||
|
"description": "Postman is an API platform and desktop client for designing, testing, documenting, and collaborating on APIs.",
|
||||||
|
"link": "https://www.postman.com/downloads/",
|
||||||
|
"winget": "Postman.Postman",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"powershell": {
|
"powershell": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "powershell-core",
|
"choco": "powershell-core",
|
||||||
@@ -1339,6 +1473,15 @@
|
|||||||
"winget": "WhirlwindFX.SignalRgb",
|
"winget": "WhirlwindFX.SignalRgb",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"simplenote": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "simplenote",
|
||||||
|
"content": "Simplenote",
|
||||||
|
"description": "Simplenote is an easy way to keep notes, lists, ideas and more.",
|
||||||
|
"link": "https://simplenote.com/",
|
||||||
|
"winget": "Automattic.Simplenote",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"simplewall": {
|
"simplewall": {
|
||||||
"category": "Pro Tools",
|
"category": "Pro Tools",
|
||||||
"choco": "simplewall",
|
"choco": "simplewall",
|
||||||
@@ -1366,6 +1509,15 @@
|
|||||||
"winget": "StartIsBack.StartAllBack",
|
"winget": "StartIsBack.StartAllBack",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"starship": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "starship",
|
||||||
|
"content": "Starship (Shell Prompt)",
|
||||||
|
"description": "Starship is a fast, customizable, cross-platform prompt for PowerShell and other shells.",
|
||||||
|
"link": "https://starship.rs/",
|
||||||
|
"winget": "Starship.Starship",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"steam": {
|
"steam": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "steam-client",
|
"choco": "steam-client",
|
||||||
@@ -1375,6 +1527,15 @@
|
|||||||
"winget": "Valve.Steam",
|
"winget": "Valve.Steam",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"roblox": {
|
||||||
|
"category": "Games",
|
||||||
|
"choco": "na",
|
||||||
|
"content": "Roblox",
|
||||||
|
"description": "Roblox is a platform and game creation system that allows users to create and play games developed by the community.",
|
||||||
|
"link": "https://www.roblox.com/",
|
||||||
|
"winget": "Roblox.Roblox",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"sublimetext": {
|
"sublimetext": {
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"choco": "sublimetext4",
|
"choco": "sublimetext4",
|
||||||
@@ -1384,6 +1545,15 @@
|
|||||||
"winget": "SublimeHQ.SublimeText.4",
|
"winget": "SublimeHQ.SublimeText.4",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"sumatra": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "sumatrapdf",
|
||||||
|
"content": "Sumatra PDF",
|
||||||
|
"description": "Sumatra PDF is a lightweight and fast PDF viewer with minimalistic design.",
|
||||||
|
"link": "https://www.sumatrapdfreader.org/free-pdf-reader.html",
|
||||||
|
"winget": "SumatraPDF.SumatraPDF",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"sunshine": {
|
"sunshine": {
|
||||||
"category": "Selfhosted Tools",
|
"category": "Selfhosted Tools",
|
||||||
"choco": "sunshine",
|
"choco": "sunshine",
|
||||||
@@ -1429,6 +1599,15 @@
|
|||||||
"winget": "TeamSpeakSystems.TeamSpeakClient",
|
"winget": "TeamSpeakSystems.TeamSpeakClient",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"teamspeak6": {
|
||||||
|
"category": "Communications",
|
||||||
|
"choco": "na",
|
||||||
|
"content": "TeamSpeak 6",
|
||||||
|
"description": "TEAMSPEAK. YOUR TEAM. YOUR RULES. Use crystal clear sound to communicate with your teammates cross-platform with military-grade security, lag-free performance & unparalleled reliability and uptime.",
|
||||||
|
"link": "https://www.teamspeak.com/",
|
||||||
|
"winget": "TeamSpeakSystems.TeamSpeakClient.Beta.6",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"telegram": {
|
"telegram": {
|
||||||
"category": "Communications",
|
"category": "Communications",
|
||||||
"choco": "telegram",
|
"choco": "telegram",
|
||||||
@@ -1528,6 +1707,15 @@
|
|||||||
"winget": "Unity.UnityHub",
|
"winget": "Unity.UnityHub",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"vagrant": {
|
||||||
|
"category": "Development",
|
||||||
|
"choco": "vagrant",
|
||||||
|
"content": "Vagrant",
|
||||||
|
"description": "Vagrant builds and manages reproducible virtual machine development environments from declarative configuration.",
|
||||||
|
"link": "https://developer.hashicorp.com/vagrant",
|
||||||
|
"winget": "Hashicorp.Vagrant",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"everything": {
|
"everything": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "everything",
|
"choco": "everything",
|
||||||
@@ -1726,6 +1914,15 @@
|
|||||||
"winget": "MHNexus.HxD",
|
"winget": "MHNexus.HxD",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
|
"xournal": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "xournalplusplus",
|
||||||
|
"content": "Xournal++",
|
||||||
|
"description": "Xournal++ is an open-source handwriting notetaking software with PDF annotation capabilities.",
|
||||||
|
"link": "https://xournalpp.github.io/",
|
||||||
|
"winget": "Xournal++.Xournal++",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"yarn": {
|
"yarn": {
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"choco": "yarn",
|
"choco": "yarn",
|
||||||
@@ -1807,6 +2004,15 @@
|
|||||||
"winget": "ZedIndustries.Zed",
|
"winget": "ZedIndustries.Zed",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"zotero": {
|
||||||
|
"category": "Document",
|
||||||
|
"choco": "zotero",
|
||||||
|
"content": "Zotero",
|
||||||
|
"description": "Zotero is a free, easy-to-use tool to help you collect, organize, cite, and share your research materials.",
|
||||||
|
"link": "https://www.zotero.org/",
|
||||||
|
"winget": "DigitalScholar.Zotero",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"deskflow": {
|
"deskflow": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "deskflow",
|
"choco": "deskflow",
|
||||||
|
|||||||
@@ -54,5 +54,59 @@
|
|||||||
"Primary6": "2a10:50c0::bad1:ff",
|
"Primary6": "2a10:50c0::bad1:ff",
|
||||||
"Secondary6": "2a10:50c0::bad2:ff",
|
"Secondary6": "2a10:50c0::bad2:ff",
|
||||||
"DohTemplate": "https://family.adguard-dns.com/dns-query"
|
"DohTemplate": "https://family.adguard-dns.com/dns-query"
|
||||||
|
},
|
||||||
|
"Mullvad":{
|
||||||
|
"Primary": "194.242.2.2",
|
||||||
|
"Secondary": "194.242.2.3",
|
||||||
|
"Primary6": "2a07:e340::2",
|
||||||
|
"Secondary6": "2a07:e340::3",
|
||||||
|
"DohOnly": true,
|
||||||
|
"DohTemplate": "https://dns.mullvad.net/dns-query",
|
||||||
|
"SecondaryDohTemplate": "https://adblock.dns.mullvad.net/dns-query"
|
||||||
|
},
|
||||||
|
"Mullvad_Ads_Trackers":{
|
||||||
|
"Primary": "194.242.2.3",
|
||||||
|
"Secondary": "194.242.2.2",
|
||||||
|
"Primary6": "2a07:e340::3",
|
||||||
|
"Secondary6": "2a07:e340::2",
|
||||||
|
"DohOnly": true,
|
||||||
|
"DohTemplate": "https://adblock.dns.mullvad.net/dns-query",
|
||||||
|
"SecondaryDohTemplate": "https://dns.mullvad.net/dns-query"
|
||||||
|
},
|
||||||
|
"Mullvad_Ads_Trackers_Malware":{
|
||||||
|
"Primary": "194.242.2.4",
|
||||||
|
"Secondary": "194.242.2.3",
|
||||||
|
"Primary6": "2a07:e340::4",
|
||||||
|
"Secondary6": "2a07:e340::3",
|
||||||
|
"DohOnly": true,
|
||||||
|
"DohTemplate": "https://base.dns.mullvad.net/dns-query",
|
||||||
|
"SecondaryDohTemplate": "https://adblock.dns.mullvad.net/dns-query"
|
||||||
|
},
|
||||||
|
"Mullvad_Ads_Trackers_Malware_Social":{
|
||||||
|
"Primary": "194.242.2.5",
|
||||||
|
"Secondary": "194.242.2.4",
|
||||||
|
"Primary6": "2a07:e340::5",
|
||||||
|
"Secondary6": "2a07:e340::4",
|
||||||
|
"DohOnly": true,
|
||||||
|
"DohTemplate": "https://extended.dns.mullvad.net/dns-query",
|
||||||
|
"SecondaryDohTemplate": "https://base.dns.mullvad.net/dns-query"
|
||||||
|
},
|
||||||
|
"Mullvad_Ads_Trackers_Malware_Adult_Gambling":{
|
||||||
|
"Primary": "194.242.2.6",
|
||||||
|
"Secondary": "194.242.2.5",
|
||||||
|
"Primary6": "2a07:e340::6",
|
||||||
|
"Secondary6": "2a07:e340::5",
|
||||||
|
"DohOnly": true,
|
||||||
|
"DohTemplate": "https://family.dns.mullvad.net/dns-query",
|
||||||
|
"SecondaryDohTemplate": "https://extended.dns.mullvad.net/dns-query"
|
||||||
|
},
|
||||||
|
"Mullvad_Ads_Trackers_Malware_Adult_Gambling_Social":{
|
||||||
|
"Primary": "194.242.2.9",
|
||||||
|
"Secondary": "194.242.2.6",
|
||||||
|
"Primary6": "2a07:e340::9",
|
||||||
|
"Secondary6": "2a07:e340::6",
|
||||||
|
"DohOnly": true,
|
||||||
|
"DohTemplate": "https://all.dns.mullvad.net/dns-query",
|
||||||
|
"SecondaryDohTemplate": "https://family.dns.mullvad.net/dns-query"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1454,34 +1454,45 @@
|
|||||||
"Value": "0",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "1",
|
"OriginalValue": "1",
|
||||||
"DefaultState": "false",
|
"DefaultState": "false"
|
||||||
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/scrollbars"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/tweaks/customize-preferences/scrollbars"
|
"link": "https://winutil.christitus.com/code-reference/tweaks/customize-preferences/scrollbars"
|
||||||
},
|
},
|
||||||
"WPFToggleMultiplaneOverlay": {
|
"WPFMultiplaneOverlay": {
|
||||||
"Content": "Multiplane Overlay",
|
"Content": "Multiplane Overlay",
|
||||||
"Description": "Multiplane Overlay compose multiple image layers, which can sometimes cause issues with graphics cards.",
|
"Description": "Multiplane Overlay composes multiple image layers, which can sometimes cause issues with graphics cards. Changes to this preference are applied immediately.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Combobox",
|
||||||
|
"ComboItems": "Enabled|Disabled (Compatibility)|Fully Disabled",
|
||||||
|
"ComboDescriptions": {
|
||||||
|
"Enabled": "Uses Windows' default overlay behavior.",
|
||||||
|
"Disabled (Compatibility)": "Disables MPO using OverlayTestMode=5, the less aggressive compatibility method.",
|
||||||
|
"Fully Disabled": "Disables MPO using OverlayTestMode=5 and DisableOverlays=1, the more aggressive method."
|
||||||
|
},
|
||||||
"registry": [
|
"registry": [
|
||||||
{
|
{
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm",
|
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm",
|
||||||
"Name": "OverlayTestMode",
|
"Name": "OverlayTestMode",
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "5",
|
"DefaultValue": "0",
|
||||||
"DefaultState": "true"
|
"Values": {
|
||||||
|
"Enabled": "<RemoveEntry>",
|
||||||
|
"Disabled (Compatibility)": "5",
|
||||||
|
"Fully Disabled": "5"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
||||||
"Name": "DisableOverlays",
|
"Name": "DisableOverlays",
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "1",
|
"DefaultValue": "0",
|
||||||
"DefaultState": "true"
|
"Values": {
|
||||||
|
"Enabled": "<RemoveEntry>",
|
||||||
|
"Disabled (Compatibility)": "<RemoveEntry>",
|
||||||
|
"Fully Disabled": "1"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/tweaks/customize-preferences/multiplaneoverlay"
|
"link": "https://winutil.christitus.com/code-reference/tweaks/customize-preferences/multiplaneoverlay"
|
||||||
@@ -1853,7 +1864,7 @@
|
|||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Combobox",
|
"Type": "Combobox",
|
||||||
"ComboItems": "Default DHCP Google Cloudflare Cloudflare_Malware Cloudflare_Malware_Adult Open_DNS Quad9 AdGuard_Ads_Trackers AdGuard_Ads_Trackers_Malware_Adult",
|
"ComboItems": "Default DHCP Google Cloudflare Cloudflare_Malware Cloudflare_Malware_Adult Open_DNS Quad9 AdGuard_Ads_Trackers AdGuard_Ads_Trackers_Malware_Adult Mullvad Mullvad_Ads_Trackers Mullvad_Ads_Trackers_Malware Mullvad_Ads_Trackers_Malware_Social Mullvad_Ads_Trackers_Malware_Adult_Gambling Mullvad_Ads_Trackers_Malware_Adult_Gambling_Social",
|
||||||
"link": "https://winutil.christitus.com/code-reference/tweaks/z--advanced-tweaks---caution/changedns"
|
"link": "https://winutil.christitus.com/code-reference/tweaks/z--advanced-tweaks---caution/changedns"
|
||||||
},
|
},
|
||||||
"WPFAddUltPerf": {
|
"WPFAddUltPerf": {
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
node_modules
|
||||||
|
.astro
|
||||||
|
dist
|
||||||
|
.git
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
*.log
|
||||||
@@ -16,6 +16,8 @@ pnpm-debug.log*
|
|||||||
# environment variables
|
# environment variables
|
||||||
.env
|
.env
|
||||||
.env.production
|
.env.production
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
# macOS-specific files
|
# macOS-specific files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
FROM node:22-bookworm-slim
|
||||||
|
|
||||||
|
RUN corepack enable
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm install
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN chown -R node:node /app
|
||||||
|
USER node
|
||||||
|
|
||||||
|
EXPOSE 4321
|
||||||
|
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]
|
||||||
@@ -1,26 +1,24 @@
|
|||||||
# Starlight Starter Kit: Basics
|
# WinUtil Docs
|
||||||
|
|
||||||
[](https://starlight.astro.build)
|
[](https://starlight.astro.build)
|
||||||
|
|
||||||
```
|
Documentation site for [WinUtil](https://github.com/ChrisTitusTech/winutil), built with [Astro](https://astro.build) and [Starlight](https://starlight.astro.build). Served at [winutil.christitus.com](https://winutil.christitus.com/).
|
||||||
npm create astro@latest -- --template starlight
|
|
||||||
```
|
|
||||||
|
|
||||||
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
|
|
||||||
|
|
||||||
## 🚀 Project Structure
|
## 🚀 Project Structure
|
||||||
|
|
||||||
Inside of your Astro + Starlight project, you'll see the following folders and files:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
.
|
.
|
||||||
├── public/
|
├── public/
|
||||||
├── src/
|
├── src/
|
||||||
│ ├── assets/
|
│ ├── assets/
|
||||||
|
│ ├── components/
|
||||||
│ ├── content/
|
│ ├── content/
|
||||||
│ │ └── docs/
|
│ │ └── docs/
|
||||||
|
│ ├── styles/
|
||||||
│ └── content.config.ts
|
│ └── content.config.ts
|
||||||
├── astro.config.mjs
|
├── astro.config.mjs
|
||||||
|
├── docker-compose.yml
|
||||||
|
├── Dockerfile
|
||||||
├── package.json
|
├── package.json
|
||||||
└── tsconfig.json
|
└── tsconfig.json
|
||||||
```
|
```
|
||||||
@@ -33,17 +31,31 @@ Static assets, like favicons, can be placed in the `public/` directory.
|
|||||||
|
|
||||||
## 🧞 Commands
|
## 🧞 Commands
|
||||||
|
|
||||||
All commands are run from the root of the project, from a terminal:
|
All commands run in a Docker container — there's no need to install Node or npm dependencies on your host. This is deliberate, not just convenience: npm/pnpm/yarn have seen a steady stream of supply-chain attacks (malicious `postinstall`/`preinstall` scripts, credential-stealing packages), so `npm install` and friends never run directly on a contributor's machine here. Note the container still has read-write access to this `docs/` directory (it's bind-mounted for live reload), so this only contains a compromised package to the project folder plus the container itself — it doesn't reach the rest of your host (SSH keys, other repos, cloud credentials elsewhere on disk). Don't keep real secrets in `docs/` as a result.
|
||||||
|
|
||||||
|
[Docker](https://www.docker.com/) (with Compose) is required — install Docker Desktop (or Docker Engine + the `docker compose` plugin on Linux) and make sure the daemon is running before using any of the commands below.
|
||||||
|
|
||||||
|
All commands are run from the `docs/` directory, from a terminal:
|
||||||
|
|
||||||
| Command | Action |
|
| Command | Action |
|
||||||
| :------------------------ | :----------------------------------------------- |
|
| :------------------------------------------------ | :----------------------------------------------- |
|
||||||
| `npm install` | Installs dependencies |
|
| `docker compose build` | Builds the dev image (needed after Dockerfile or dependency changes) |
|
||||||
| `npm run dev` | Starts local dev server at `localhost:4321` |
|
| `docker compose up winutil-astro` | Starts local dev server at `localhost:4321` |
|
||||||
| `npm run build` | Build your production site to `./dist/` |
|
| `docker compose run --rm winutil-astro npm run build` | Build the production site to `./dist/` |
|
||||||
| `npm run preview` | Preview your build locally, before deploying |
|
| `docker compose run --rm --service-ports winutil-astro npm run preview -- --host 0.0.0.0` | Preview the build locally, before deploying |
|
||||||
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
| `docker compose run --rm winutil-astro npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
||||||
| `npm run astro -- --help` | Get help using the Astro CLI |
|
| `docker compose down` | Stop and remove the dev container |
|
||||||
|
|
||||||
|
Source files are bind-mounted into the container, so edits on the host are picked up immediately by the dev server — no rebuild needed for normal content or code changes. After changing `package.json`, `package-lock.json`, or the `Dockerfile`, rebuild the image *and* drop the `node_modules` volume, since Docker only seeds a named volume from the image the first time it's created — a plain rebuild leaves the old `node_modules` in place:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker compose build
|
||||||
|
docker compose down -v
|
||||||
|
docker compose up winutil-astro
|
||||||
|
```
|
||||||
|
|
||||||
|
The first `docker compose up` (or any command before an image exists) builds the image and runs `npm install` from scratch, which can take a few minutes. Subsequent runs reuse the cached image and start almost immediately.
|
||||||
|
|
||||||
## 👀 Want to learn more?
|
## 👀 Want to learn more?
|
||||||
|
|
||||||
Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).
|
Check out [Starlight's docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
// @ts-check
|
// @ts-check
|
||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from 'astro/config';
|
||||||
import starlight from '@astrojs/starlight';
|
import starlight from '@astrojs/starlight';
|
||||||
|
import { siteLinks } from './src/site-links.ts';
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
@@ -14,20 +15,29 @@ export default defineConfig({
|
|||||||
replacesTitle: true,
|
replacesTitle: true,
|
||||||
},
|
},
|
||||||
favicon: '/favicon.svg',
|
favicon: '/favicon.svg',
|
||||||
|
head: [
|
||||||
|
{ tag: 'meta', attrs: { property: 'og:image', content: 'https://winutil.christitus.com/social-preview.png' } },
|
||||||
|
{ tag: 'meta', attrs: { property: 'og:image:width', content: '1200' } },
|
||||||
|
{ tag: 'meta', attrs: { property: 'og:image:height', content: '630' } },
|
||||||
|
{ tag: 'meta', attrs: { name: 'twitter:image', content: 'https://winutil.christitus.com/social-preview.png' } },
|
||||||
|
],
|
||||||
social: [
|
social: [
|
||||||
{ icon: 'github', label: 'GitHub', href: 'https://github.com/ChrisTitusTech/winutil' },
|
{ icon: 'github', label: 'GitHub', href: 'https://github.com/ChrisTitusTech/winutil' },
|
||||||
{ icon: 'discord', label: 'Discord', href: 'https://discord.gg/RUbZUZyByQ' },
|
{ icon: 'discord', label: 'Discord', href: 'https://discord.gg/RUbZUZyByQ' },
|
||||||
],
|
],
|
||||||
|
// Global theme overrides (colors, fonts, landing-page section styles).
|
||||||
customCss: ['./src/styles/theme.css'],
|
customCss: ['./src/styles/theme.css'],
|
||||||
|
// Custom component overrides, all under src/components/.
|
||||||
components: {
|
components: {
|
||||||
ThemeProvider: './src/components/ThemeProvider.astro',
|
ThemeProvider: './src/components/ThemeProvider.astro',
|
||||||
Hero: './src/components/Hero.astro',
|
|
||||||
Header: './src/components/Header.astro',
|
Header: './src/components/Header.astro',
|
||||||
|
Hero: './src/components/Hero.astro',
|
||||||
Footer: './src/components/Footer.astro',
|
Footer: './src/components/Footer.astro',
|
||||||
},
|
},
|
||||||
editLink: {
|
editLink: {
|
||||||
baseUrl: 'https://github.com/ChrisTitusTech/winutil/edit/main/docs/',
|
baseUrl: 'https://github.com/ChrisTitusTech/winutil/edit/main/docs/',
|
||||||
},
|
},
|
||||||
|
// Sidebar groups, top to bottom: User Guide, Code Reference, Help.
|
||||||
sidebar: [
|
sidebar: [
|
||||||
{
|
{
|
||||||
label: 'User Guide',
|
label: 'User Guide',
|
||||||
@@ -54,10 +64,12 @@ export default defineConfig({
|
|||||||
label: 'Help',
|
label: 'Help',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'FAQ', slug: 'faq' },
|
{ label: 'FAQ', slug: 'faq' },
|
||||||
{ label: 'Known Issues', slug: 'known-issues' },
|
{ label: 'Known Issues', slug: 'knownissues' },
|
||||||
{ label: 'Contributing', slug: 'contributing' },
|
{ label: 'Contributing', slug: 'contributing' },
|
||||||
|
{ label: siteLinks.forums.label, link: siteLinks.forums.href, attrs: { target: '_blank', rel: 'noreferrer' } },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{ label: siteLinks.store.label, link: siteLinks.store.href, attrs: { target: '_blank', rel: 'noreferrer' } },
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
services:
|
||||||
|
winutil-astro:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:4321:4321"
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
||||||
|
- astro_node_modules:/app/node_modules
|
||||||
|
tmpfs:
|
||||||
|
- /app/.astro
|
||||||
|
environment:
|
||||||
|
- CHOKIDAR_USEPOLLING=true
|
||||||
|
- ASTRO_TELEMETRY_DISABLED=1
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
astro_node_modules:
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
User-agent: *
|
||||||
|
Allow: /
|
||||||
|
|
||||||
|
Sitemap: https://winutil.christitus.com/sitemap-index.xml
|
||||||
|
After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 173 KiB After Width: | Height: | Size: 252 KiB |
|
Before Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
Before Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
Before Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 193 KiB |
|
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 94 KiB |
@@ -12,11 +12,13 @@ const { icon, title } = Astro.props;
|
|||||||
---
|
---
|
||||||
|
|
||||||
<div class="wu-corner-card">
|
<div class="wu-corner-card">
|
||||||
|
{/* Corner brackets decoration. */}
|
||||||
<span class="wu-corner-marks" aria-hidden="true">
|
<span class="wu-corner-marks" aria-hidden="true">
|
||||||
<span class="mark top-left" /><span class="mark top-right" /><span class="mark bottom-left" /><span
|
<span class="mark top-left" /><span class="mark top-right" /><span class="mark bottom-left" /><span
|
||||||
class="mark bottom-right"
|
class="mark bottom-right"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
|
{/* Icon badge + heading + description. */}
|
||||||
<div class="wu-corner-card-icon">
|
<div class="wu-corner-card-icon">
|
||||||
<Icon name={icon} size="1.25rem" />
|
<Icon name={icon} size="1.25rem" />
|
||||||
</div>
|
</div>
|
||||||
@@ -36,6 +38,7 @@ const { icon, title } = Astro.props;
|
|||||||
background-color: var(--sl-color-bg);
|
background-color: var(--sl-color-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Corner brackets decoration (four small L-shaped marks). */
|
||||||
.wu-corner-marks {
|
.wu-corner-marks {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inset: 0;
|
inset: 0;
|
||||||
@@ -93,6 +96,7 @@ const { icon, title } = Astro.props;
|
|||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Icon badge + heading + description. */
|
||||||
.wu-corner-card-icon {
|
.wu-corner-card-icon {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -9,12 +9,14 @@ const year = new Date().getFullYear();
|
|||||||
---
|
---
|
||||||
|
|
||||||
<footer class="sl-flex">
|
<footer class="sl-flex">
|
||||||
|
{/* Edit link + last-updated timestamp, and prev/next pagination. */}
|
||||||
<div class="meta sl-flex">
|
<div class="meta sl-flex">
|
||||||
<EditLink />
|
<EditLink />
|
||||||
<LastUpdated />
|
<LastUpdated />
|
||||||
</div>
|
</div>
|
||||||
<Pagination />
|
<Pagination />
|
||||||
|
|
||||||
|
{/* "Built with Starlight" credit (only shown if Starlight's `credits` config is enabled). */}
|
||||||
{
|
{
|
||||||
config.credits && (
|
config.credits && (
|
||||||
<a class="kudos sl-flex" href="https://starlight.astro.build">
|
<a class="kudos sl-flex" href="https://starlight.astro.build">
|
||||||
@@ -23,11 +25,13 @@ const year = new Date().getFullYear();
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{/* Copyright line. */}
|
||||||
<div class="site-footer-copyright">© {year} <a href="https://christitus.com">Chris Titus Tech</a>. All rights reserved.</div>
|
<div class="site-footer-copyright">© {year} <a href="https://christitus.com">Chris Titus Tech</a>. All rights reserved.</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@layer starlight.core {
|
@layer starlight.core {
|
||||||
|
/* Footer layout: stacked meta row + pagination. */
|
||||||
footer {
|
footer {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
@@ -44,6 +48,7 @@ const year = new Date().getFullYear();
|
|||||||
margin-inline-start: auto;
|
margin-inline-start: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* "Built with Starlight" credit link. */
|
||||||
.kudos {
|
.kudos {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
@@ -63,16 +68,14 @@ const year = new Date().getFullYear();
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Collapse the meta/pagination rows entirely when they have nothing in them
|
/* Collapse the meta/pagination rows entirely when they have nothing in them (e.g. editUrl: false and no prev/next), instead of leaving an empty gap. */
|
||||||
(e.g. editUrl: false and no prev/next), instead of leaving an empty gap. */
|
|
||||||
footer .meta:empty,
|
footer .meta:empty,
|
||||||
footer :global(.pagination-links):empty {
|
footer :global(.pagination-links):empty {
|
||||||
display: none;
|
display: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Site-wide copyright line, matching the previous Hugo docs site's footer.
|
/* Site-wide copyright line, matching the previous Hugo docs site's footer. The divider above it comes from Starlight's own .content-panel border. */
|
||||||
The divider above it comes from Starlight's own .content-panel border. */
|
|
||||||
.site-footer-copyright {
|
.site-footer-copyright {
|
||||||
font-size: var(--sl-text-xs);
|
font-size: var(--sl-text-xs);
|
||||||
color: var(--sl-color-gray-3);
|
color: var(--sl-color-gray-3);
|
||||||
|
|||||||
@@ -6,40 +6,79 @@ import Search from 'virtual:starlight/components/Search';
|
|||||||
import SiteTitle from 'virtual:starlight/components/SiteTitle';
|
import SiteTitle from 'virtual:starlight/components/SiteTitle';
|
||||||
import SocialIcons from 'virtual:starlight/components/SocialIcons';
|
import SocialIcons from 'virtual:starlight/components/SocialIcons';
|
||||||
import ThemeSelect from 'virtual:starlight/components/ThemeSelect';
|
import ThemeSelect from 'virtual:starlight/components/ThemeSelect';
|
||||||
|
import { Icon } from '@astrojs/starlight/components';
|
||||||
|
import { siteLinks } from '../site-links';
|
||||||
|
|
||||||
/**
|
// Render the `Search` component if Pagefind is enabled or the default search component has been overridden.
|
||||||
* Render the `Search` component if Pagefind is enabled or the default search component has been overridden.
|
|
||||||
*/
|
|
||||||
const shouldRenderSearch =
|
const shouldRenderSearch =
|
||||||
config.pagefind || config.components.Search !== '@astrojs/starlight/components/Search.astro';
|
config.pagefind || config.components.Search !== '@astrojs/starlight/components/Search.astro';
|
||||||
|
|
||||||
|
// Pages with a sidebar already have Starlight's own mobile menu toggle; only splash pages need this one.
|
||||||
|
const { hasSidebar } = Astro.locals.starlightRoute;
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="header">
|
<div class="header">
|
||||||
|
{/* Site title. */}
|
||||||
<div class="title-wrapper sl-flex">
|
<div class="title-wrapper sl-flex">
|
||||||
<SiteTitle />
|
<SiteTitle />
|
||||||
</div>
|
</div>
|
||||||
|
<div class="mobile-actions sl-flex">
|
||||||
|
{/* Search box. */}
|
||||||
<div class="sl-flex print:hidden">
|
<div class="sl-flex print:hidden">
|
||||||
{shouldRenderSearch && <Search />}
|
{shouldRenderSearch && <Search />}
|
||||||
</div>
|
</div>
|
||||||
|
{
|
||||||
|
!hasSidebar && (
|
||||||
|
<div class="site-nav-toggle sl-flex md:sl-hidden print:hidden">
|
||||||
|
<button type="button" aria-expanded="false" aria-controls="site-nav-panel" aria-label="Site navigation">
|
||||||
|
<Icon name="bars" class="open-menu" />
|
||||||
|
<Icon name="close" class="close-menu" />
|
||||||
|
</button>
|
||||||
|
<div id="site-nav-panel" class="site-nav-panel">
|
||||||
|
<div class="site-nav-panel-group">
|
||||||
|
<p class="site-nav-panel-heading">Documentation</p>
|
||||||
|
<a href="/guides/">User Guides</a>
|
||||||
|
<a href="/contributing/">Contribution Guides</a>
|
||||||
|
<a href="/code-reference/architecture/">Code Reference</a>
|
||||||
|
</div>
|
||||||
|
<div class="site-nav-panel-group">
|
||||||
|
<p class="site-nav-panel-heading">Help</p>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
|
<a href="/knownissues/">Known Issues</a>
|
||||||
|
<a href={siteLinks.forums.href} target="_blank" rel="noreferrer">{siteLinks.forums.label}</a>
|
||||||
|
</div>
|
||||||
|
<a class="site-nav-panel-link" href={siteLinks.store.href} target="_blank" rel="noreferrer">{siteLinks.store.label}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
{/* Right-side group: nav links, social icons, theme/language pickers. */}
|
||||||
<div class="sl-hidden md:sl-flex print:hidden right-group">
|
<div class="sl-hidden md:sl-flex print:hidden right-group">
|
||||||
<nav class="site-nav" aria-label="Top">
|
<nav class="site-nav" aria-label="Top">
|
||||||
<a class="site-nav-link" href="/guides/">User Guides</a>
|
{/* "Documentation" dropdown. */}
|
||||||
<div class="site-nav-dropdown">
|
<div class="site-nav-dropdown">
|
||||||
<button type="button" class="site-nav-link" aria-haspopup="true">Documentation</button>
|
<details name="site-nav-dropdown">
|
||||||
|
<summary class="site-nav-link">Documentation</summary>
|
||||||
|
</details>
|
||||||
<div class="site-nav-menu">
|
<div class="site-nav-menu">
|
||||||
|
<a href="/guides/">User Guides</a>
|
||||||
<a href="/contributing/">Contribution Guides</a>
|
<a href="/contributing/">Contribution Guides</a>
|
||||||
<a href="/code-reference/architecture/">Developer Docs</a>
|
<a href="/code-reference/architecture/">Code Reference</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{/* "Help" dropdown. */}
|
||||||
<div class="site-nav-dropdown">
|
<div class="site-nav-dropdown">
|
||||||
<button type="button" class="site-nav-link" aria-haspopup="true">Help</button>
|
<details name="site-nav-dropdown">
|
||||||
|
<summary class="site-nav-link">Help</summary>
|
||||||
|
</details>
|
||||||
<div class="site-nav-menu">
|
<div class="site-nav-menu">
|
||||||
<a href="/faq/">FAQ</a>
|
<a href="/faq/">FAQ</a>
|
||||||
<a href="/known-issues/">Known Issues</a>
|
<a href="/knownissues/">Known Issues</a>
|
||||||
<a href="https://forum.christitus.com/" target="_blank" rel="noreferrer">Forums</a>
|
<a href={siteLinks.forums.href} target="_blank" rel="noreferrer">{siteLinks.forums.label}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a class="site-nav-link" href="https://christitus.com/downloads/" target="_blank" rel="noreferrer">Store</a>
|
<a class="site-nav-link" href={siteLinks.store.href} target="_blank" rel="noreferrer">{siteLinks.store.label}</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="sl-flex social-icons">
|
<div class="sl-flex social-icons">
|
||||||
<SocialIcons />
|
<SocialIcons />
|
||||||
@@ -49,8 +88,28 @@ const shouldRenderSearch =
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const toggle = document.querySelector<HTMLElement>('.site-nav-toggle');
|
||||||
|
const btn = toggle?.querySelector('button');
|
||||||
|
|
||||||
|
if (toggle && btn) {
|
||||||
|
const setExpanded = (expanded: boolean) => btn.setAttribute('aria-expanded', String(expanded));
|
||||||
|
|
||||||
|
btn.addEventListener('click', () => setExpanded(btn.getAttribute('aria-expanded') !== 'true'));
|
||||||
|
toggle.addEventListener('keyup', (e) => {
|
||||||
|
if (e.code === 'Escape') {
|
||||||
|
setExpanded(false);
|
||||||
|
btn.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// Collapse the panel if the viewport grows past the mobile breakpoint.
|
||||||
|
matchMedia('(min-width: 50em)').addEventListener('change', () => setExpanded(false));
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@layer starlight.core {
|
@layer starlight.core {
|
||||||
|
/* Header shell: title, search, right-side nav group. */
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--sl-nav-gap);
|
gap: var(--sl-nav-gap);
|
||||||
@@ -60,14 +119,19 @@ const shouldRenderSearch =
|
|||||||
}
|
}
|
||||||
|
|
||||||
.title-wrapper {
|
.title-wrapper {
|
||||||
/* Prevent long titles overflowing and covering the search and menu buttons on narrow viewports. */
|
/* Clips long titles instead of overflowing onto the search/menu buttons; padding/negative margin avoids clipping the focus ring. */
|
||||||
overflow: clip;
|
overflow: clip;
|
||||||
/* Avoid clipping focus ring around title wrapper. */
|
|
||||||
padding: 0.25rem;
|
padding: 0.25rem;
|
||||||
margin: -0.25rem;
|
margin: -0.25rem;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mobile-actions {
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Right-side group: nav + social icons, divided by a hairline. */
|
||||||
.right-group,
|
.right-group,
|
||||||
.social-icons {
|
.social-icons {
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
@@ -86,6 +150,7 @@ const shouldRenderSearch =
|
|||||||
:global(:root:not([data-has-toc])) {
|
:global(:root:not([data-has-toc])) {
|
||||||
--__toc-width: 0rem;
|
--__toc-width: 0rem;
|
||||||
}
|
}
|
||||||
|
/* Columns: site title */
|
||||||
.header {
|
.header {
|
||||||
--__sidebar-width: max(0rem, var(--sl-content-inline-start, 0rem) - var(--sl-nav-pad-x));
|
--__sidebar-width: max(0rem, var(--sl-content-inline-start, 0rem) - var(--sl-nav-pad-x));
|
||||||
--__main-column-fr: calc(
|
--__main-column-fr: calc(
|
||||||
@@ -97,21 +162,18 @@ const shouldRenderSearch =
|
|||||||
);
|
);
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns:
|
grid-template-columns:
|
||||||
/* 1 (site title): runs up until the main content column’s left edge or the width of the title, whichever is the largest */
|
|
||||||
minmax(
|
minmax(
|
||||||
calc(var(--__sidebar-width) + max(0rem, var(--__main-column-fr) - var(--sl-nav-gap))),
|
calc(var(--__sidebar-width) + max(0rem, var(--__main-column-fr) - var(--sl-nav-gap))),
|
||||||
auto
|
auto
|
||||||
)
|
)
|
||||||
/* 2 (search box): all free space that is available. */
|
|
||||||
1fr
|
1fr
|
||||||
/* 3 (right items): use the space that these need. */
|
|
||||||
auto;
|
auto;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Top nav links + dropdowns, matching the previous Hugo docs site's navbar. */
|
/* Top nav links + dropdowns. */
|
||||||
.site-nav {
|
.site-nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -120,6 +182,7 @@ const shouldRenderSearch =
|
|||||||
border-inline-end: 1px solid var(--sl-color-hairline-light);
|
border-inline-end: 1px solid var(--sl-color-hairline-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Top nav trigger: shared style for plain links and dropdown triggers. */
|
||||||
.site-nav-link {
|
.site-nav-link {
|
||||||
font-size: var(--sl-text-sm);
|
font-size: var(--sl-text-sm);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@@ -136,13 +199,25 @@ const shouldRenderSearch =
|
|||||||
color: var(--sl-color-white);
|
color: var(--sl-color-white);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Extends the hoverable box down to the menu, closing the dead zone between trigger and menu. */
|
||||||
.site-nav-dropdown {
|
.site-nav-dropdown {
|
||||||
position: relative;
|
position: relative;
|
||||||
/* Extends the dropdown's own hoverable box down to meet the menu, so the
|
|
||||||
cursor never crosses a dead zone between the trigger and the menu. */
|
|
||||||
padding-bottom: 0.75rem;
|
padding-bottom: 0.75rem;
|
||||||
margin-bottom: -0.75rem;
|
margin-bottom: -0.75rem;
|
||||||
}
|
}
|
||||||
|
/* No box of its own; only the <summary> lays out. Its `open` state (no JS) is read by .site-nav-menu below. */
|
||||||
|
.site-nav-dropdown > details {
|
||||||
|
display: contents;
|
||||||
|
}
|
||||||
|
.site-nav-dropdown > details > summary {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.site-nav-dropdown > details > summary::-webkit-details-marker {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
/* Dropdown menu panel: shown on hover (mouse) or when the sibling <details> is toggled open (touch/keyboard). */
|
||||||
.site-nav-menu {
|
.site-nav-menu {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -160,7 +235,7 @@ const shouldRenderSearch =
|
|||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
.site-nav-dropdown:hover .site-nav-menu,
|
.site-nav-dropdown:hover .site-nav-menu,
|
||||||
.site-nav-dropdown:focus-within .site-nav-menu {
|
.site-nav-dropdown:has(details[open]) .site-nav-menu {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.site-nav-menu a {
|
.site-nav-menu a {
|
||||||
@@ -175,4 +250,82 @@ const shouldRenderSearch =
|
|||||||
color: var(--sl-color-white);
|
color: var(--sl-color-white);
|
||||||
background: var(--sl-color-gray-6);
|
background: var(--sl-color-gray-6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Mobile equivalent of the site-nav, shown via a toggle button since the desktop nav is hidden below `md`. */
|
||||||
|
.site-nav-toggle button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 2.25rem;
|
||||||
|
height: 2.25rem;
|
||||||
|
border: 0;
|
||||||
|
border-radius: var(--wu-radius-sm, 0.5rem);
|
||||||
|
padding: 0;
|
||||||
|
background: none;
|
||||||
|
color: var(--sl-color-gray-2);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.site-nav-toggle button:hover {
|
||||||
|
color: var(--sl-color-white);
|
||||||
|
}
|
||||||
|
.site-nav-toggle button svg {
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
}
|
||||||
|
.site-nav-toggle button[aria-expanded='true'] .open-menu,
|
||||||
|
.site-nav-toggle button:not([aria-expanded='true']) .close-menu {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-nav-panel {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
inset-inline: 0;
|
||||||
|
top: var(--sl-nav-height);
|
||||||
|
z-index: var(--sl-z-index-menu);
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.25rem;
|
||||||
|
max-height: calc(100vh - var(--sl-nav-height));
|
||||||
|
overflow-y: auto;
|
||||||
|
padding: 1rem var(--sl-nav-pad-x) 1.5rem;
|
||||||
|
background: var(--sl-color-bg-nav);
|
||||||
|
border-bottom: 1px solid var(--sl-color-hairline-shade);
|
||||||
|
}
|
||||||
|
.site-nav-toggle button[aria-expanded='true'] ~ .site-nav-panel {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.site-nav-panel-link {
|
||||||
|
padding: 0.5rem 0.25rem;
|
||||||
|
font-size: var(--sl-text-sm);
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--sl-color-gray-2);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.site-nav-panel-link:hover {
|
||||||
|
color: var(--sl-color-white);
|
||||||
|
}
|
||||||
|
.site-nav-panel-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
border-top: 1px solid var(--sl-color-hairline-light);
|
||||||
|
padding-top: 0.5rem;
|
||||||
|
}
|
||||||
|
.site-nav-panel-heading {
|
||||||
|
margin: 0 0 0.25rem;
|
||||||
|
padding: 0 0.25rem;
|
||||||
|
font-size: var(--sl-text-xs);
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.02em;
|
||||||
|
color: var(--sl-color-gray-3);
|
||||||
|
}
|
||||||
|
.site-nav-panel-group a {
|
||||||
|
padding: 0.5rem 0.25rem;
|
||||||
|
font-size: var(--sl-text-sm);
|
||||||
|
color: var(--sl-color-gray-2);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.site-nav-panel-group a:hover {
|
||||||
|
color: var(--sl-color-white);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import { Icon } from '@astrojs/starlight/components';
|
|||||||
// Matches Starlight's internal PAGE_TITLE_ID (used by the skip-to-content link).
|
// Matches Starlight's internal PAGE_TITLE_ID (used by the skip-to-content link).
|
||||||
const PAGE_TITLE_ID = '_top';
|
const PAGE_TITLE_ID = '_top';
|
||||||
|
|
||||||
|
// Resolve hero content: Starlight's built-in hero fields plus our custom schema extensions.
|
||||||
const { data } = Astro.locals.starlightRoute.entry;
|
const { data } = Astro.locals.starlightRoute.entry;
|
||||||
const { title = data.title, tagline, image, actions = [] } = data.hero || {};
|
const { title = data.title, tagline, image, actions = [] } = data.hero || {};
|
||||||
const { heroEyebrow, heroCaption, heroBadges = [] } = data;
|
const { heroEyebrow, heroCaption, heroBadges = [] } = data;
|
||||||
@@ -15,9 +16,11 @@ if (image && 'file' in image) heroImage = image.file;
|
|||||||
---
|
---
|
||||||
|
|
||||||
<section class="wu-hero">
|
<section class="wu-hero">
|
||||||
|
{/* Full-bleed grid/glow background layer. */}
|
||||||
<div class="wu-hero-grid" aria-hidden="true"></div>
|
<div class="wu-hero-grid" aria-hidden="true"></div>
|
||||||
<div class="wu-hero-glow" aria-hidden="true"></div>
|
<div class="wu-hero-glow" aria-hidden="true"></div>
|
||||||
<div class="wu-hero-inner">
|
<div class="wu-hero-inner">
|
||||||
|
{/* Copy column: eyebrow, heading, tagline, actions, caption. */}
|
||||||
<div class="wu-hero-copy">
|
<div class="wu-hero-copy">
|
||||||
{heroEyebrow && <p class="wu-eyebrow">{heroEyebrow}</p>}
|
{heroEyebrow && <p class="wu-eyebrow">{heroEyebrow}</p>}
|
||||||
<h1 id={PAGE_TITLE_ID} data-page-title set:html={title} />
|
<h1 id={PAGE_TITLE_ID} data-page-title set:html={title} />
|
||||||
@@ -42,6 +45,7 @@ if (image && 'file' in image) heroImage = image.file;
|
|||||||
}
|
}
|
||||||
{heroCaption && <p class="wu-hero-caption">{heroCaption}</p>}
|
{heroCaption && <p class="wu-hero-caption">{heroCaption}</p>}
|
||||||
</div>
|
</div>
|
||||||
|
{/* Screenshot framed as a fake browser/app window. */}
|
||||||
{
|
{
|
||||||
heroImage && (
|
heroImage && (
|
||||||
<div class="wu-hero-media">
|
<div class="wu-hero-media">
|
||||||
@@ -66,6 +70,7 @@ if (image && 'file' in image) heroImage = image.file;
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
{/* Badge row (shields.io / dcbadge images) below the two-column layout. */}
|
||||||
{
|
{
|
||||||
heroBadges.length > 0 && (
|
heroBadges.length > 0 && (
|
||||||
<div class="wu-hero-bottom">
|
<div class="wu-hero-bottom">
|
||||||
@@ -138,6 +143,7 @@ if (image && 'file' in image) heroImage = image.file;
|
|||||||
padding-block: 3rem 2rem;
|
padding-block: 3rem 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hero copy: eyebrow, heading, tagline, actions, caption. */
|
||||||
.wu-hero-copy {
|
.wu-hero-copy {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@@ -198,6 +204,7 @@ if (image && 'file' in image) heroImage = image.file;
|
|||||||
box-shadow: 0 25px 50px -12px hsl(0 0% 0% / 0.5);
|
box-shadow: 0 25px 50px -12px hsl(0 0% 0% / 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Window chrome: title bar + traffic-light buttons. */
|
||||||
.wu-window-bar {
|
.wu-window-bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -5,10 +5,12 @@ import { Icon } from '@astrojs/starlight/components';
|
|||||||
|
|
||||||
<script is:inline>
|
<script is:inline>
|
||||||
window.StarlightThemeProvider = (() => {
|
window.StarlightThemeProvider = (() => {
|
||||||
|
// Apply the resolved theme to <html> immediately, before paint, to avoid a flash of the wrong theme.
|
||||||
const storedTheme =
|
const storedTheme =
|
||||||
typeof localStorage !== 'undefined' && localStorage.getItem('starlight-theme');
|
typeof localStorage !== 'undefined' && localStorage.getItem('starlight-theme');
|
||||||
const theme = storedTheme || 'dark';
|
const theme = storedTheme || 'dark';
|
||||||
document.documentElement.dataset.theme = theme === 'light' ? 'light' : 'dark';
|
document.documentElement.dataset.theme = theme === 'light' ? 'light' : 'dark';
|
||||||
|
// Re-syncs each theme-select picker's icon + value after the visitor changes theme.
|
||||||
return {
|
return {
|
||||||
updatePickers(theme = storedTheme || 'auto') {
|
updatePickers(theme = storedTheme || 'auto') {
|
||||||
document.querySelectorAll('starlight-theme-select').forEach((picker) => {
|
document.querySelectorAll('starlight-theme-select').forEach((picker) => {
|
||||||
|
|||||||
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
// Responsive 16:9 YouTube embed using the privacy-enhanced (nocookie) domain.
|
||||||
|
interface Props {
|
||||||
|
id: string;
|
||||||
|
title: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { id, title } = Astro.props;
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="wu-video-embed not-content">
|
||||||
|
<iframe
|
||||||
|
src={`https://www.youtube-nocookie.com/embed/${id}`}
|
||||||
|
title={title}
|
||||||
|
loading="lazy"
|
||||||
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||||
|
allowfullscreen
|
||||||
|
></iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/* `not-content` on the wrapper opts it out of Starlight's markdown reset, which otherwise forces `iframe { height: auto }`. */
|
||||||
|
.wu-video-embed {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
aspect-ratio: 16 / 9;
|
||||||
|
margin: 1.5rem 0;
|
||||||
|
border: 1px solid var(--sl-color-hairline-light);
|
||||||
|
background-color: var(--sl-color-black);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wu-video-embed iframe {
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -149,8 +149,6 @@ The **Win11 Creator** is a specialized subsystem within Winutil that creates cus
|
|||||||
- Applies offline registry tweaks (hardware bypass, privacy, telemetry, OOBE)
|
- Applies offline registry tweaks (hardware bypass, privacy, telemetry, OOBE)
|
||||||
- Deletes telemetry scheduled task definitions
|
- Deletes telemetry scheduled task definitions
|
||||||
- Pre-stages setup scripts from autounattend.xml
|
- Pre-stages setup scripts from autounattend.xml
|
||||||
- Removes unused Windows editions
|
|
||||||
- Cleans component store via DISM
|
|
||||||
|
|
||||||
### Win11 Creator Data Flow
|
### Win11 Creator Data Flow
|
||||||
|
|
||||||
@@ -181,16 +179,14 @@ Invoke-WinUtilISOModify (runs in background runspace)
|
|||||||
│ ├─ Delete telemetry scheduled task files
|
│ ├─ Delete telemetry scheduled task files
|
||||||
│ ├─ Pre-stage setup scripts from autounattend.xml to C:\Windows\Setup\Scripts\
|
│ ├─ Pre-stage setup scripts from autounattend.xml to C:\Windows\Setup\Scripts\
|
||||||
│ └─ Unload registry hives
|
│ └─ Unload registry hives
|
||||||
├─ DISM /Cleanup-Image /StartComponentCleanup /ResetBase (saves 300-800 MB)
|
|
||||||
├─ Dismount and save the modified install.wim (~10+ minutes, slowest step)
|
├─ Dismount and save the modified install.wim (~10+ minutes, slowest step)
|
||||||
├─ Export selected edition only (removes all other editions, saves 1-2 GB each)
|
|
||||||
├─ Dismount source ISO
|
├─ Dismount source ISO
|
||||||
└─ Report completion, enable export options
|
└─ Report completion, enable export options
|
||||||
↓
|
↓
|
||||||
Invoke-WinUtilISOExport (user chooses output)
|
Invoke-WinUtilISOExport (user chooses output)
|
||||||
├─ Option 1: Save as ISO
|
├─ Option 1: Save as ISO
|
||||||
│ ├─ Build bootable ISO via oscdimg.exe (BIOS/UEFI dual-boot)
|
│ ├─ Build bootable ISO via oscdimg.exe (BIOS/UEFI dual-boot)
|
||||||
│ └─ Output: Win11_Modified_[date].iso (2.5-3.5 GB)
|
│ └─ Output: Win11_Modified_[date].iso (close to the source ISO size)
|
||||||
│
|
│
|
||||||
└─ Option 2: Write to USB
|
└─ Option 2: Write to USB
|
||||||
├─ Format USB as GPT
|
├─ Format USB as GPT
|
||||||
@@ -272,7 +268,7 @@ The `Invoke-WinUtilISOScript` function applies **50+ offline registry tweaks**:
|
|||||||
|
|
||||||
- **Temporary working directory**: ~10-15 GB
|
- **Temporary working directory**: ~10-15 GB
|
||||||
- **Original ISO**: 4-6 GB
|
- **Original ISO**: 4-6 GB
|
||||||
- **Modified ISO**: 2.5-3.5 GB
|
- **Modified ISO**: close to the source ISO size
|
||||||
- **Total needed**: ~25 GB for safe operation
|
- **Total needed**: ~25 GB for safe operation
|
||||||
|
|
||||||
## Data Flow
|
## Data Flow
|
||||||
@@ -389,6 +385,8 @@ Update UI
|
|||||||
- `Description`: What it does
|
- `Description`: What it does
|
||||||
- `category`: Essential/Advanced/Customize
|
- `category`: Essential/Advanced/Customize
|
||||||
- `registry`: Registry changes to make
|
- `registry`: Registry changes to make
|
||||||
|
- `registry[].Values`: Per-state values for a registry-backed combobox
|
||||||
|
- `registry[].DefaultValue`: Effective value when the registry entry is absent
|
||||||
- `service`: Services to change
|
- `service`: Services to change
|
||||||
- `OriginalValue/State`: For undo functionality
|
- `OriginalValue/State`: For undo functionality
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy F8 Boot Recovery - Disable"
|
title: "Legacy F8 Boot Recovery - Disable"
|
||||||
description: "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."
|
description: "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy F8 Boot Recovery - Enable"
|
title: "Legacy F8 Boot Recovery - Enable"
|
||||||
description: "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."
|
description: "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Registry Backup (Daily Task 12:30am) - Enable"
|
title: "Registry Backup (Daily Task 12:30am) - Enable"
|
||||||
description: "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803."
|
description: "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Sandbox - Enable"
|
title: "Windows Sandbox - Enable"
|
||||||
description: "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation."
|
description: "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: ".NET Framework (Versions 2, 3, 4) - Enable"
|
title: ".NET Framework (Versions 2, 3, 4) - Enable"
|
||||||
description: ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications."
|
description: ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Hyper-V - Enable"
|
title: "Hyper-V - Enable"
|
||||||
description: "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines."
|
description: "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy Media Components (WMP, DirectPlay) - Enable"
|
title: "Legacy Media Components (WMP, DirectPlay) - Enable"
|
||||||
description: "Enables legacy programs from previous versions of Windows."
|
description: "Enables legacy programs from previous versions of Windows."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Network File System (NFS) - Enable"
|
title: "Network File System (NFS) - Enable"
|
||||||
description: "Network File System (NFS) is a mechanism for storing files on a network."
|
description: "Network File System (NFS) is a mechanism for storing files on a network."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Subsystem for Linux (WSL) - Enable"
|
title: "Windows Subsystem for Linux (WSL) - Enable"
|
||||||
description: "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting."
|
description: "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "AutoLogon - Run"
|
title: "AutoLogon - Run"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFPanelAutologin.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFPanelAutologin.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFPanelAutologin.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFPanelAutologin.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFPanelAutologin.ps1"
|
```powershell title="functions/public/Invoke-WPFPanelAutologin.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "System Corruption Scan - Run"
|
title: "System Corruption Scan - Run"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFSystemRepair.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFSystemRepair.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFSystemRepair.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFSystemRepair.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFSystemRepair.ps1"
|
```powershell title="functions/public/Invoke-WPFSystemRepair.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "NTP Server - Enable"
|
title: "NTP Server - Enable"
|
||||||
description: "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability."
|
description: "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesNTPPool.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesNTPPool.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFFixesNTPPool.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesNTPPool.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesNTPPool.ps1"
|
```powershell title="functions/public/Invoke-WPFFixesNTPPool.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Network - Reset"
|
title: "Network - Reset"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesNetwork.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesNetwork.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFFixesNetwork.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesNetwork.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesNetwork.ps1"
|
```powershell title="functions/public/Invoke-WPFFixesNetwork.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Update - Reset"
|
title: "Windows Update - Reset"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesUpdate.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesUpdate.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFFixesUpdate.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesUpdate.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesUpdate.ps1"
|
```powershell title="functions/public/Invoke-WPFFixesUpdate.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "WinGet - Reinstall"
|
title: "WinGet - Reinstall"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesWinget.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesWinget.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFFixesWinget.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesWinget.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesWinget.ps1"
|
```powershell title="functions/public/Invoke-WPFFixesWinget.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Computer Management"
|
title: "Computer Management"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Control Panel"
|
title: "Control Panel"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Defender Firewall"
|
title: "Windows Defender Firewall"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Mouse Properties"
|
title: "Mouse Properties"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Network Connections"
|
title: "Network Connections"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Power Panel"
|
title: "Power Panel"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Printer Panel"
|
title: "Printer Panel"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Programs and Features"
|
title: "Programs and Features"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Region"
|
title: "Region"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Restore"
|
title: "Windows Restore"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Security and Maintenance"
|
title: "Security and Maintenance"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Sound Settings"
|
title: "Sound Settings"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "System Properties"
|
title: "System Properties"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Time and Date"
|
title: "Time and Date"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/feature.json"
|
```json title="config/feature.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "CTT PowerShell Profile - Install"
|
title: "CTT PowerShell Profile - Install"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/private/Invoke-WinUtilInstallPSProfile.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/private/Invoke-WinUtilInstallPSProfile.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/private/Invoke-WinUtilInstallPSProfile.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/private/Invoke-WinUtilInstallPSProfile.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/private/Invoke-WinUtilInstallPSProfile.ps1"
|
```powershell title="functions/private/Invoke-WinUtilInstallPSProfile.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "CTT PowerShell Profile - Remove"
|
title: "CTT PowerShell Profile - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/private/Invoke-WinUtilUninstallPSProfile.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/private/Invoke-WinUtilUninstallPSProfile.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/private/Invoke-WinUtilUninstallPSProfile.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/private/Invoke-WinUtilUninstallPSProfile.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/private/Invoke-WinUtilUninstallPSProfile.ps1"
|
```powershell title="functions/private/Invoke-WinUtilUninstallPSProfile.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "OpenSSH Server - Enable"
|
title: "OpenSSH Server - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`functions/public/Invoke-WPFSSHServer.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFSSHServer.ps1). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`functions/public/Invoke-WPFSSHServer.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFSSHServer.ps1). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFSSHServer.ps1"
|
```powershell title="functions/public/Invoke-WPFSSHServer.ps1"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "System Tray Battery Percentage"
|
title: "System Tray Battery Percentage"
|
||||||
description: "Shows numeric battery percentage next to the battery icon in the system tray."
|
description: "Shows numeric battery percentage next to the battery icon in the system tray."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Start Menu Bing Search"
|
title: "Start Menu Bing Search"
|
||||||
description: "Toggles Bing web search results in Windows Search."
|
description: "Toggles Bing web search results in Windows Search."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Dark Theme for Windows"
|
title: "Dark Theme for Windows"
|
||||||
description: "Dark Mode for the system and applications."
|
description: "Dark Mode for the system and applications."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "BSoD Verbose Mode"
|
title: "BSoD Verbose Mode"
|
||||||
description: "Gives more information when you blue screen."
|
description: "Gives more information when you blue screen."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Lock Screen - Disable"
|
title: "Lock Screen - Disable"
|
||||||
description: "Skips the lock screen entirely and goes directly to the sign-in screen on boot and wake."
|
description: "Skips the lock screen entirely and goes directly to the sign-in screen on boot and wake."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Game Mode"
|
title: "Game Mode"
|
||||||
description: "Toggles Windows prioritizes gaming performance by allocating system resources to games."
|
description: "Toggles Windows prioritizes gaming performance by allocating system resources to games."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "File Explorer Hidden Files"
|
title: "File Explorer Hidden Files"
|
||||||
description: "Reveals hidden files in Explorer."
|
description: "Reveals hidden files in Explorer."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Settings Home Page"
|
title: "Settings Home Page"
|
||||||
description: "Toggles the Home Page in the Windows Settings app."
|
description: "Toggles the Home Page in the Windows Settings app."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Logon Screen Acrylic Blur"
|
title: "Logon Screen Acrylic Blur"
|
||||||
description: "Toggles the acrylic blur effect on login screen background."
|
description: "Toggles the acrylic blur effect on login screen background."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Enable Long Paths"
|
title: "Enable Long Paths"
|
||||||
description: "Toggles support for file paths longer than 260 characters in Explorer."
|
description: "Toggles support for file paths longer than 260 characters in Explorer."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Mouse Acceleration"
|
title: "Mouse Acceleration"
|
||||||
description: "Makes it so Cursor movement is affected by the speed of your physical mouse movements."
|
description: "Makes it so Cursor movement is affected by the speed of your physical mouse movements."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Multiplane Overlay"
|
title: "Multiplane Overlay"
|
||||||
description: "Multiplane Overlay compose multiple image layers, which can sometimes cause issues with graphics cards."
|
description: "Multiplane Overlay compose multiple image layers, which can sometimes cause issues with graphics cards."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Microsoft Outlook New Version"
|
title: "Microsoft Outlook New Version"
|
||||||
description: "This will ensures the classic Outlook application is used."
|
description: "This will ensures the classic Outlook application is used."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Num Lock on Startup"
|
title: "Num Lock on Startup"
|
||||||
description: "Toggle the Num Lock key state when your computer starts."
|
description: "Toggle the Num Lock key state when your computer starts."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "S3 Sleep"
|
title: "S3 Sleep"
|
||||||
description: "Toggles between Modern Standby and S3 Sleep, which cuts off power to the CPU while continuing to refresh the memory."
|
description: "Toggles between Modern Standby and S3 Sleep, which cuts off power to the CPU while continuing to refresh the memory."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Scrollbars Always Visible"
|
title: "Scrollbars Always Visible"
|
||||||
description: "If enabled, scrollbars will always be visible. If disabled, Windows will automatically hide scrollbars when not in use."
|
description: "If enabled, scrollbars will always be visible. If disabled, Windows will automatically hide scrollbars when not in use."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
@@ -21,8 +22,7 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
"Value": "0",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "1",
|
"OriginalValue": "1",
|
||||||
"DefaultState": "false",
|
"DefaultState": "false"
|
||||||
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/scrollbars"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "File Explorer File Extensions"
|
title: "File Explorer File Extensions"
|
||||||
description: "Shows .file extensions in Explorer (.exe, .png, etc.)"
|
description: "Shows .file extensions in Explorer (.exe, .png, etc.)"
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "S0 Sleep Network Connectivity"
|
title: "S0 Sleep Network Connectivity"
|
||||||
description: "Toggles network connectivity during S0 Sleep which is low power idle in modern laptops."
|
description: "Toggles network connectivity during S0 Sleep which is low power idle in modern laptops."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Start Menu Recommendations"
|
title: "Start Menu Recommendations"
|
||||||
description: "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect."
|
description: "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Sticky Keys"
|
title: "Sticky Keys"
|
||||||
description: "Toggles the Sticky Keys, which activate when clicking shift rapidly."
|
description: "Toggles the Sticky Keys, which activate when clicking shift rapidly."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Taskbar Task View Icon"
|
title: "Taskbar Task View Icon"
|
||||||
description: "Toggles the Task View Button in the Taskbar."
|
description: "Toggles the Task View Button in the Taskbar."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Taskbar Centered Icons"
|
title: "Taskbar Centered Icons"
|
||||||
description: "Toggles the Taskbar alignment either to the left or center."
|
description: "Toggles the Taskbar alignment either to the left or center."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Taskbar Search Icon"
|
title: "Taskbar Search Icon"
|
||||||
description: "Toggles the Search Button on the Taskbar."
|
description: "Toggles the Search Button on the Taskbar."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Logon Verbose Mode"
|
title: "Logon Verbose Mode"
|
||||||
description: "Show detailed messages during startup/shutdown."
|
description: "Show detailed messages during startup/shutdown."
|
||||||
|
editUrl: false
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Edit the source file and regenerate the docs rather than editing this file directly.
|
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json title="config/tweaks.json"
|
||||||
|
|||||||