- Open Powershell as an administrator
- Run
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }
- Verify that all mice devices have had their
FlipFlopWheelattributes set to 1Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0
- Reboot
The Swerty keyboard layout is created by Johan E. Gustafsson and hosted on http://johanegustafsson.net/projects/swerty/
Swerty is released under the MIT Licence.
Since I spend a lot of time getting the right alt-gr key to work I decided to share back my fixes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo mkdir /etc/apt/keyrings | |
| curl --fail --silent --show-error --location https://dl.google.com/linux/linux_signing_key.pub \ | |
| | gpg --dearmor \ | |
| | sudo tee /etc/apt/keyrings/google.gpg | |
| echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.gpg] https://dl.google.com/linux/chrome/deb/ stable main" \ | |
| | sudo tee /etc/apt/sources.list.d/google-chrome.list | |
| # We want to manage the Google Chrome repository manually, so that we can use |