Skip to content

Taskbar Centered Icons

config/tweaks.json
1758  "WPFToggleTaskbarAlignment": {
1759    "Content": "Taskbar Centered Icons",
1760    "Description": "Toggles the taskbar alignment either to the left or center",
1761    "category": "Customize Preferences",
1762    "panel": "2",
1763    "Type": "Toggle",
1764    "registry": [
1765      {
1766        "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
1767        "Name": "TaskbarAl",
1768        "Value": "1",
1769        "Type": "DWord",
1770        "OriginalValue": "0",
1771        "DefaultState": "true"
1772      }
1773    ],
1774    "InvokeScript": [
1775      "
1776      Invoke-WinUtilExplorerUpdate -action \"restart\"
1777      "
1778    ],
1779    "UndoScript": [
1780      "
1781      Invoke-WinUtilExplorerUpdate -action \"restart\"
1782      "
1783    ],

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.