Skip to content

Mouse Acceleration

config/tweaks.json
2349  "WPFToggleMouseAcceleration": {
2350    "Content": "Mouse Acceleration",
2351    "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.",
2352    "category": "Customize Preferences",
2353    "panel": "2",
2354    "Type": "Toggle",
2355    "registry": [
2356      {
2357        "Path": "HKCU:\\Control Panel\\Mouse",
2358        "Name": "MouseSpeed",
2359        "Value": "1",
2360        "Type": "DWord",
2361        "OriginalValue": "0",
2362        "DefaultState": "true"
2363      },
2364      {
2365        "Path": "HKCU:\\Control Panel\\Mouse",
2366        "Name": "MouseThreshold1",
2367        "Value": "6",
2368        "Type": "DWord",
2369        "OriginalValue": "0",
2370        "DefaultState": "true"
2371      },
2372      {
2373        "Path": "HKCU:\\Control Panel\\Mouse",
2374        "Name": "MouseThreshold2",
2375        "Value": "10",
2376        "Type": "DWord",
2377        "OriginalValue": "0",
2378        "DefaultState": "true"
2379      }
2380    ],

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.