Skip to content

Taskbar Centered Icons

config/tweaks.json
1736  "WPFToggleTaskbarAlignment": {
1737    "Content": "Taskbar Centered Icons",
1738    "Description": "Toggles the Taskbar alignment either to the left or center.",
1739    "category": "Customize Preferences",
1740    "panel": "2",
1741    "Type": "Toggle",
1742    "registry": [
1743      {
1744        "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
1745        "Name": "TaskbarAl",
1746        "Value": "1",
1747        "Type": "DWord",
1748        "OriginalValue": "0",
1749        "DefaultState": "true"
1750      }
1751    ],
1752    "InvokeScript": [
1753      "
1754      Invoke-WinUtilExplorerUpdate -action \"restart\"
1755      "
1756    ],
1757    "UndoScript": [
1758      "
1759      Invoke-WinUtilExplorerUpdate -action \"restart\"
1760      "
1761    ],

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.