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

40 lines
1.2 KiB
Markdown
Raw Normal View History

2026-02-10 19:49:36 +00:00
---
2026-04-17 09:04:35 -05:00
title: "Taskbar Centered Icons"
2026-02-10 19:49:36 +00:00
description: ""
---
2026-02-18 12:37:09 -06:00
2026-06-08 10:01:26 -05:00
```json {filename="config/tweaks.json",linenos=inline,linenostart=1742}
"WPFToggleTaskbarAlignment": {
2026-04-17 09:04:35 -05:00
"Content": "Taskbar Centered Icons",
2026-06-03 13:29:11 -05:00
"Description": "Toggles the taskbar alignment either to the left or center",
2026-01-14 20:28:45 +02:00
"category": "Customize Preferences",
"panel": "2",
"Type": "Toggle",
"registry": [
{
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
"Name": "TaskbarAl",
"Value": "1",
2026-02-18 20:17:33 +00:00
"Type": "DWord",
2026-01-14 20:28:45 +02:00
"OriginalValue": "0",
2026-02-18 20:17:33 +00:00
"DefaultState": "true"
2026-01-14 20:28:45 +02:00
}
],
2026-02-18 12:37:09 -06:00
"InvokeScript": [
"
Invoke-WinUtilExplorerUpdate -action \"restart\"
"
],
2026-02-18 14:33:39 -06:00
"UndoScript": [
"
Invoke-WinUtilExplorerUpdate -action \"restart\"
"
],
2026-01-07 19:55:35 +00:00
```
2026-01-14 20:28:45 +02:00
## Registry Changes
2026-03-26 15:26:48 -05: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-05-26 15:17:54 -05:00
You can find information about the registry on [Wikipedia](https://en.wikipedia.org/wiki/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).