diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 8fc9d3d0..58c9a91f 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -19,4 +19,4 @@
## Checklist
- [ ] My code adheres to the coding and style guidelines of the project.
- [ ] I have commented my code, particularly in hard-to-understand areas.
-- [ ] I have made corresponding changes to the documentation.
\ No newline at end of file
+- [ ] I have made corresponding changes to the documentation.
diff --git a/.github/workflows/label-pr.yaml b/.github/workflows/label-pr.yaml
index 7bb81319..0c96acd4 100644
--- a/.github/workflows/label-pr.yaml
+++ b/.github/workflows/label-pr.yaml
@@ -18,7 +18,7 @@ jobs:
script: |
const prBody = context.payload.pull_request.body || '';
const labelsToAdd = [];
-
+
if (/\[x\]\s*New feature/i.test(prBody)) {
labelsToAdd.push('new feature');
}
@@ -34,7 +34,7 @@ jobs:
if (/\[x\]\s*UI\/UX improvement/i.test(prBody)) {
labelsToAdd.push('ui update');
}
-
+
if (labelsToAdd.length > 0) {
await github.rest.issues.addLabels({
owner: context.repo.owner,
@@ -42,4 +42,4 @@ jobs:
issue_number: context.payload.pull_request.number,
labels: labelsToAdd
});
- }
\ No newline at end of file
+ }
diff --git a/config/themes.json b/config/themes.json
index b44ae419..57aeeb92 100644
--- a/config/themes.json
+++ b/config/themes.json
@@ -1,8 +1,8 @@
{
"shared":{
- "AppEntryWidth": "130",
+ "AppEntryWidth": "200",
"AppEntryFontSize": "11",
- "AppEntryMargin": "1,1,1,1",
+ "AppEntryMargin": "1,0,1,0",
"AppEntryBorderThickness": "0",
"CustomDialogFontSize": "12",
"CustomDialogFontSizeHeader": "14",
diff --git a/docs/content/dev/architecture.md b/docs/content/dev/architecture.md
index 5c38facb..c5e84781 100644
--- a/docs/content/dev/architecture.md
+++ b/docs/content/dev/architecture.md
@@ -546,5 +546,5 @@ Outputs `winutil.ps1` in the root directory.
---
-**Last Updated**: January 2026
-**Maintainers**: Chris Titus Tech and contributors
\ No newline at end of file
+**Last Updated**: January 2026
+**Maintainers**: Chris Titus Tech and contributors
diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Hibernation.md b/docs/content/dev/tweaks/Essential-Tweaks/Hibernation.md
index d81776ba..399304c2 100644
--- a/docs/content/dev/tweaks/Essential-Tweaks/Hibernation.md
+++ b/docs/content/dev/tweaks/Essential-Tweaks/Hibernation.md
@@ -30,7 +30,7 @@
"powercfg.exe /hibernate on"
],
```
-
+
## Registry Changes
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md
index 89b160f7..457ad452 100644
--- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md
+++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md
@@ -13,7 +13,7 @@
Write-Host \"Uninstalling OneDrive...\"
Start-Process 'C:\\Windows\\System32\\OneDriveSetup.exe' -ArgumentList '/uninstall' -Wait
-
+
# Some of OneDrive files use explorer, and OneDrive uses FileCoAuth
Write-Host \"Removing leftover OneDrive Files...\"
Stop-Process -Name FileCoAuth,Explorer
diff --git a/docs/content/faq.md b/docs/content/faq.md
index c5f5fe13..26431ecd 100644
--- a/docs/content/faq.md
+++ b/docs/content/faq.md
@@ -297,5 +297,5 @@ Can't find your answer? Try these resources:
---
-**Last Updated**: January 2026
+**Last Updated**: January 2026
**Found this helpful?** Consider starring the project on [GitHub](https://github.com/ChrisTitusTech/winutil)!
diff --git a/docs/content/userguide/_index.md b/docs/content/userguide/_index.md
index f50ccad3..74afb89e 100644
--- a/docs/content/userguide/_index.md
+++ b/docs/content/userguide/_index.md
@@ -54,7 +54,7 @@ Apply optimizations for performance, privacy, and usability. Choose from preset
Quick fixes for common Windows problems:
- Reset network settings
-- Fix Windows Update issues
+- Fix Windows Update issues
- Repair system files
- Access legacy Windows panels
@@ -152,7 +152,7 @@ This User Guide covers everything you need to know:
1. **[Getting Started](getting-started/)** - Installation, first run, basic usage
2. **[Application Store](store/)** - Installing software, using presets
-3. **[Tweaks](tweaks/)** - System optimizations and customizations
+3. **[Tweaks](tweaks/)** - System optimizations and customizations
4. **[Features & Fixes](features/)** - Troubleshooting tools and utilities
5. **[MicroWin](microwin/)** - Creating custom Windows ISOs
6. **[Updates](updates/)** - Managing Windows Update behavior
diff --git a/functions/private/Initialize-InstallCategoryAppList.ps1 b/functions/private/Initialize-InstallCategoryAppList.ps1
index 6daded27..96e39053 100644
--- a/functions/private/Initialize-InstallCategoryAppList.ps1
+++ b/functions/private/Initialize-InstallCategoryAppList.ps1
@@ -44,7 +44,7 @@ function Initialize-InstallCategoryAppList {
foreach ($category in $($appsByCategory.Keys | Sort-Object)) {
Add-Category -Category $category -TargetElement $TargetElement
$wrapPanel = New-Object Windows.Controls.WrapPanel
- $wrapPanel.Orientation = "Horizontal"
+ $wrapPanel.Orientation = "Vertical"
$wrapPanel.HorizontalAlignment = "Stretch"
$wrapPanel.VerticalAlignment = "Center"
$wrapPanel.Margin = New-Object Windows.Thickness(0, 0, 0, 20)
diff --git a/xaml/inputXML.xaml b/xaml/inputXML.xaml
index c241d399..60aa8346 100644
--- a/xaml/inputXML.xaml
+++ b/xaml/inputXML.xaml
@@ -23,7 +23,7 @@
-
+
@@ -85,7 +85,7 @@