Files
winutil/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md
T

29 lines
1.1 KiB
Markdown
Raw Normal View History

2026-02-10 19:49:36 +00:00
---
title: "Center Taskbar Items"
description: ""
---
```json {filename="config/tweaks.json",linenos=inline,linenostart=2522}
"WPFToggleTaskbarAlignment": {
2026-01-14 20:28:45 +02:00
"Content": "Center Taskbar Items",
"Description": "[Windows 11] If Enabled then the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.",
"category": "Customize Preferences",
"panel": "2",
"Type": "Toggle",
"registry": [
{
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
"Name": "TaskbarAl",
"Value": "1",
"OriginalValue": "0",
"DefaultState": "true",
"Type": "DWord"
}
],
2026-01-07 19:55:35 +00:00
```
2026-01-14 20:28:45 +02:00
## Registry Changes
2026-01-14 20:28:45 +02:00
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.
2026-01-07 19:55:35 +00:00
2026-01-14 20:28:45 +02:00
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).