Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: disable narrator and screen capture shortcuts #1144

Merged
merged 2 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/playbook/Configuration/tweaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ actions:
- !task: {path: 'tweaks\qol\visual-effects.yml'}
- !task: {path: 'tweaks\qol\disable-tips.yml'}
- !task: {path: 'tweaks\qol\disable-win11-settings-banner.yml'}
- !task: {path: 'tweaks\qol\disable-screen-capture-hotkey.yml', option: 'remove-snipping-tool'}

# -------------------------------------------------------------------------- #
# qol\appearance #
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Disable Screen Capture Hotkey
description: Disables using the print screen key to open Screen Capture when Snipping Tool is removed
actions:
- !registryValue:
path: 'HKCU\Control Panel\Keyboard'
value: 'PrintScreenKeyForSnippingEnabled'
data: '0'
type: REG_DWORD
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,10 @@ actions:
value: 'Hotkey'
data: '3'
type: REG_DWORD

# Disable Narrator shortcut
- !registryValue:
path: 'HKCU\Software\Microsoft\Narrator\NoRoam'
value: 'WinEnterLaunchEnabled'
data: '0'
type: REG_DWORD
Loading