As a Linux user, I'm a heavy workspace user. Windows 10 has that, but I would still like to switch between them the way I do in Linux, where I use
ctrl+alt+right or left
to switch between workspaces.
Cependant, for Windows 10 it's rather ctrl+windows+right or left.
Comment modify these Windows 10 shortcuts to those of Linux?
Comment modify windows 10 Clavier shortcuts?
Re: Comment modify windows 10 Clavier shortcuts?
One cannot change the Windows shortcuts, but one can intercept keys
and change them on the fly.
AutoHotkey is a great program for remapping keyboard keys.
Here are the steps to set this up:
- Download and install [AutoHotkey](http://www.autohotkey.com/)
- Create a text nom de fichierd startup.ahk and paste the following inside to map
Ctrl+Alt+Right / Left to
Ctrl+Win+Right / Left:
`!^Right::^#Right`
`!^Left::^#Left`
- Save and run the script to test its functionality.
- If it performs as expected, copy the script into the Startup folder
To trouvez le startup folder in Windows 10, open "Run" (press Win + R, or search for it in the menu Démarrer) and type either (without quotes): "shell:startup" for the current user, or "shell:commau démarrage" for all users. Copy startup.ahk to the folder that opens.
and change them on the fly.
AutoHotkey is a great program for remapping keyboard keys.
Here are the steps to set this up:
- Download and install [AutoHotkey](http://www.autohotkey.com/)
- Create a text nom de fichierd startup.ahk and paste the following inside to map
Ctrl+Alt+Right / Left to
Ctrl+Win+Right / Left:
`!^Right::^#Right`
`!^Left::^#Left`
- Save and run the script to test its functionality.
- If it performs as expected, copy the script into the Startup folder
To trouvez le startup folder in Windows 10, open "Run" (press Win + R, or search for it in the menu Démarrer) and type either (without quotes): "shell:startup" for the current user, or "shell:commau démarrage" for all users. Copy startup.ahk to the folder that opens.