Skip to content

Commit

Permalink
feat: disable 'alt + space' lang bar shortcuts (#1120)
Browse files Browse the repository at this point in the history
### Questions
- [x] Did you test your changes or double-check that they work?
- [x] Did you read and follow the [Atlas Contribution
Guidelines](https://docs.atlasos.net/contributions/)?

### Describe your pull request
Turns off the <kbd>Left Alt</kbd> + <kbd>Space</kbd> shortcut that
changes the keyboard layout if there are multiple installed. Users can
easily trigger this shortcut within games, which is annoying.
  • Loading branch information
he3als authored Jun 12, 2024
1 parent 871eb1c commit 5db9af4
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,22 @@ actions:
value: 'Flags'
data: '0'
type: REG_DWORD

# Disable language bar shortcuts
- !registryKey:
path: 'HKCU\Control Panel\Input Method\Hot Keys\00000104'
- !registryValue:
path: 'HKCU\Keyboard Layout\Toggle'
value: 'Layout Hotkey'
data: '3'
type: REG_DWORD
- !registryValue:
path: 'HKCU\Keyboard Layout\Toggle'
value: 'Language Hotkey'
data: '3'
type: REG_DWORD
- !registryValue:
path: 'HKCU\Keyboard Layout\Toggle'
value: 'Hotkey'
data: '3'
type: REG_DWORD

0 comments on commit 5db9af4

Please sign in to comment.