Skip to content

Taskbar Centered Icons

config/tweaks.json
1643  "WPFToggleTaskbarAlignment": {
1644    "Content": "Taskbar Centered Icons",
1645    "Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.",
1646    "category": "Customize Preferences",
1647    "panel": "2",
1648    "Type": "Toggle",
1649    "registry": [
1650      {
1651        "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
1652        "Name": "TaskbarAl",
1653        "Value": "1",
1654        "Type": "DWord",
1655        "OriginalValue": "0",
1656        "DefaultState": "true"
1657      }
1658    ],
1659    "InvokeScript": [
1660      "
1661      Invoke-WinUtilExplorerUpdate -action \"restart\"
1662      "
1663    ],
1664    "UndoScript": [
1665      "
1666      Invoke-WinUtilExplorerUpdate -action \"restart\"
1667      "
1668    ],

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.

You can find information about the registry on Wikipedia and Microsoft’s Website.