File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @bluecadet/launchpad-scaffold " : minor
3
+ ---
4
+
5
+ Added ability to disable 3 & 4 finger touch gestures
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ $global:LaunchpadConfig.Windows.DisableNewsAndInterests = $true
57
57
$global :LaunchpadConfig.Windows.DisableNotifications = $true
58
58
$global :LaunchpadConfig.Windows.DisableScreensaver = $true
59
59
$global :LaunchpadConfig.Windows.DisableTouchFeedback = $true
60
+ $global :LaunchpadConfig.Windows.DisableTouchGestures = $true
60
61
$global :LaunchpadConfig.Windows.DisableUpdateCheck = $true
61
62
$global :LaunchpadConfig.Windows.DisableUpdateService = $true
62
63
$global :LaunchpadConfig.Windows.EnableScriptExecution = $true
Original file line number Diff line number Diff line change
1
+
2
+ Import-Module - DisableNameChecking $PSScriptRoot / ../ vendor/ force- mkdir.psm1
3
+
4
+ force- mkdir " HKCU:\Control Panel\Desktop"
5
+
6
+ # See https://answers.microsoft.com/en-us/windows/forum/all/windows-1011-touch-gesture/af9a6d19-8aa6-4d26-9693-55aa591110b3
7
+ Set-ItemProperty - Path " HKCU:\Control Panel\Desktop" - Name " TouchGestureSetting" - Type DWord - Value 0
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ if ($LaunchpadConfig.Windows.DisableNewNetworkWindow) { RunScript ./scripts/wind
97
97
if ($LaunchpadConfig.Windows.DisableNewsAndInterests ) { RunScript ./ scripts/ windows/ disable_news_and_interests.ps1 " Disable News and Interests toolbar?" }
98
98
if ($LaunchpadConfig.Windows.DisableNotifications ) { RunScript ./ scripts/ windows/ disable_notifications.ps1 " Disable notifications?" }
99
99
if ($LaunchpadConfig.Windows.DisableScreensaver ) { RunScript ./ scripts/ windows/ disable_screensaver.ps1 " Disable screensaver?" }
100
- if ($LaunchpadConfig.Windows.DisableTouchFeedback ) { RunScript ./ scripts/ windows/ disable_touch_feedback.ps1 " Disable touch feedback and gestures?" }
100
+ if ($LaunchpadConfig.Windows.DisableTouchFeedback ) { RunScript ./ scripts/ windows/ disable_touch_feedback.ps1 " Disable touch feedback?" }
101
+ if ($LaunchpadConfig.Windows.DisableTouchGestures ) { RunScript ./ scripts/ windows/ disable_touch_gestures.ps1 " Disable touch gestures?" }
101
102
if ($LaunchpadConfig.Windows.DisableUpdateCheck ) { RunScript ./ scripts/ windows/ disable_update_check.ps1 " Disable update checks?" }
102
103
if ($LaunchpadConfig.Windows.DisableUpdateService ) { RunScript ./ scripts/ windows/ disable_update_service.ps1 " Disable update service?" }
103
104
if ($LaunchpadConfig.Windows.DisableAppInstalls ) { RunScript ./ scripts/ windows/ disable_app_installs.ps1 " Disable automatic Windows app installs?" }
You can’t perform that action at this time.
0 commit comments