Skip to content

Commit

Permalink
feat: disable narrator and screen capture shortcuts (#1144)
Browse files Browse the repository at this point in the history
  • Loading branch information
36conaN authored Jul 12, 2024
1 parent 33a9194 commit d434dd6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
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

0 comments on commit d434dd6

Please sign in to comment.