How to modify windows 10 Keyboard shortcuts? The 2019 Stack Overflow Developer Survey Results...
How do you keep chess fun when your opponent constantly beats you?
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
Is bread bad for ducks?
Pokemon Turn Based battle (Python)
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
Why couldn't they take pictures of a closer black hole?
Why “相同意思的词” is called “同义词” instead of "同意词"?
Match Roman Numerals
What is this business jet?
What does もの mean in this sentence?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Can I have a signal generator on while it's not connected?
Is it correct to say the Neural Networks are an alternative way of performing Maximum Likelihood Estimation? if not, why?
Dropping list elements from nested list after evaluation
Does adding complexity mean a more secure cipher?
Is it okay to consider publishing in my first year of PhD?
Geography at the pixel level
What is the most efficient way to store a numeric range?
Likelihood that a superbug or lethal virus could come from a landfill
How much of the clove should I use when using big garlic heads?
Getting crown tickets for Statue of Liberty
If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?
Straighten subgroup lattice
A word that means fill it to the required quantity
How to modify windows 10 Keyboard shortcuts?
The 2019 Stack Overflow Developer Survey Results Are InHow can you change Windows 10 keyboard shortcuts?Changing alt/ctrl + shift keys functionalityHow to disable Windows Gamebar mapping?Disable start menu when pressing the WIN keyPrevent Ctrl+Alt+S from trying to open HP System InformationExclude an input language from Alt+Shift switching cycle on Windows 10OSX Keyboard Shortcuts in Dialogs?Remote Desktop Hijacking Needed Keyboard ShortcutsLooking for non-conflicting cross-platform keybinding consistencyUnity Shortcuts in Linux MintTurn all workspaces into windows or split screen to show several workspaces at onceDisabling Windows 8.1 screen orientation key shortcutsRemote Desktop switch workspaces on host (Windows 10)Windows 10: Removing Keyboard ShortcutsRemove or Modify a shortcut from WindowsHow to set Chrome Shortcuts as priority over web app?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
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.
However, for Windows 10 it's rather ctrl+windows+right or left.
How do I modify these Windows 10 shortcuts to those of Linux?
keyboard-shortcuts windows-10 workspace
add a comment |
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.
However, for Windows 10 it's rather ctrl+windows+right or left.
How do I modify these Windows 10 shortcuts to those of Linux?
keyboard-shortcuts windows-10 workspace
add a comment |
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.
However, for Windows 10 it's rather ctrl+windows+right or left.
How do I modify these Windows 10 shortcuts to those of Linux?
keyboard-shortcuts windows-10 workspace
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.
However, for Windows 10 it's rather ctrl+windows+right or left.
How do I modify these Windows 10 shortcuts to those of Linux?
keyboard-shortcuts windows-10 workspace
keyboard-shortcuts windows-10 workspace
edited Oct 24 '15 at 6:38
harrymc
265k14274583
265k14274583
asked Oct 17 '15 at 1:29
answerSeekeranswerSeeker
5462823
5462823
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I tried harrymc's script but it didn't work. So I modified it and the following one worked for me:
!^Right::send, #^{Right down}{Right up}
!^Left::send, #^{Left down}{Left up}
everything else was fine.
Then I improved the script by adding the following lines
!^Down::
send, #^{Right down}{Right up}
Sleep, 200
send, #^{Right down}{Right up}
return
!^Up::
send, #^{Left down}{Left up}
Sleep, 200
send, #^{Left down}{Left up}
return
This allows to emulate a 2x2 grid with UP and Down arrows to navigate between rows.
Edit: The sleep command was added to allow the animation to finish before sending the second send otherwise I have seen some occurrences where this second instruction was ignored.
1
Is there a reason you need toSleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?
– Matt
Mar 20 '17 at 14:07
1
I had to add thesleepcommand because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the secondsendwas ignored because it is executed too fast. You may modify thesleepduration or remove it if you want.
– Aquadarius
Mar 21 '17 at 12:05
2
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
add a comment |
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
- Create a text file named 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 find the startup folder in Windows 10, open "Run" (press Win + R, or search for it in the Start menu) and type either (without quotes): "shell:startup" for the current user, or "shell:common startup" for all users. Copy startup.ahk to the folder that opens.
1
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
7
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
add a comment |
protected by Community♦ Nov 5 '16 at 15:15
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I tried harrymc's script but it didn't work. So I modified it and the following one worked for me:
!^Right::send, #^{Right down}{Right up}
!^Left::send, #^{Left down}{Left up}
everything else was fine.
Then I improved the script by adding the following lines
!^Down::
send, #^{Right down}{Right up}
Sleep, 200
send, #^{Right down}{Right up}
return
!^Up::
send, #^{Left down}{Left up}
Sleep, 200
send, #^{Left down}{Left up}
return
This allows to emulate a 2x2 grid with UP and Down arrows to navigate between rows.
Edit: The sleep command was added to allow the animation to finish before sending the second send otherwise I have seen some occurrences where this second instruction was ignored.
1
Is there a reason you need toSleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?
– Matt
Mar 20 '17 at 14:07
1
I had to add thesleepcommand because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the secondsendwas ignored because it is executed too fast. You may modify thesleepduration or remove it if you want.
– Aquadarius
Mar 21 '17 at 12:05
2
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
add a comment |
I tried harrymc's script but it didn't work. So I modified it and the following one worked for me:
!^Right::send, #^{Right down}{Right up}
!^Left::send, #^{Left down}{Left up}
everything else was fine.
Then I improved the script by adding the following lines
!^Down::
send, #^{Right down}{Right up}
Sleep, 200
send, #^{Right down}{Right up}
return
!^Up::
send, #^{Left down}{Left up}
Sleep, 200
send, #^{Left down}{Left up}
return
This allows to emulate a 2x2 grid with UP and Down arrows to navigate between rows.
Edit: The sleep command was added to allow the animation to finish before sending the second send otherwise I have seen some occurrences where this second instruction was ignored.
1
Is there a reason you need toSleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?
– Matt
Mar 20 '17 at 14:07
1
I had to add thesleepcommand because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the secondsendwas ignored because it is executed too fast. You may modify thesleepduration or remove it if you want.
– Aquadarius
Mar 21 '17 at 12:05
2
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
add a comment |
I tried harrymc's script but it didn't work. So I modified it and the following one worked for me:
!^Right::send, #^{Right down}{Right up}
!^Left::send, #^{Left down}{Left up}
everything else was fine.
Then I improved the script by adding the following lines
!^Down::
send, #^{Right down}{Right up}
Sleep, 200
send, #^{Right down}{Right up}
return
!^Up::
send, #^{Left down}{Left up}
Sleep, 200
send, #^{Left down}{Left up}
return
This allows to emulate a 2x2 grid with UP and Down arrows to navigate between rows.
Edit: The sleep command was added to allow the animation to finish before sending the second send otherwise I have seen some occurrences where this second instruction was ignored.
I tried harrymc's script but it didn't work. So I modified it and the following one worked for me:
!^Right::send, #^{Right down}{Right up}
!^Left::send, #^{Left down}{Left up}
everything else was fine.
Then I improved the script by adding the following lines
!^Down::
send, #^{Right down}{Right up}
Sleep, 200
send, #^{Right down}{Right up}
return
!^Up::
send, #^{Left down}{Left up}
Sleep, 200
send, #^{Left down}{Left up}
return
This allows to emulate a 2x2 grid with UP and Down arrows to navigate between rows.
Edit: The sleep command was added to allow the animation to finish before sending the second send otherwise I have seen some occurrences where this second instruction was ignored.
edited Mar 21 '17 at 12:09
answered Oct 30 '16 at 7:35
AquadariusAquadarius
24624
24624
1
Is there a reason you need toSleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?
– Matt
Mar 20 '17 at 14:07
1
I had to add thesleepcommand because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the secondsendwas ignored because it is executed too fast. You may modify thesleepduration or remove it if you want.
– Aquadarius
Mar 21 '17 at 12:05
2
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
add a comment |
1
Is there a reason you need toSleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?
– Matt
Mar 20 '17 at 14:07
1
I had to add thesleepcommand because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the secondsendwas ignored because it is executed too fast. You may modify thesleepduration or remove it if you want.
– Aquadarius
Mar 21 '17 at 12:05
2
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
1
1
Is there a reason you need to
Sleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?– Matt
Mar 20 '17 at 14:07
Is there a reason you need to
Sleep, 200? Removing that prevents that 200ms flash of the desktops between where you jump to. Is removing the sleep a problem if you're CPU is running high?– Matt
Mar 20 '17 at 14:07
1
1
I had to add the
sleep command because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the second send was ignored because it is executed too fast. You may modify the sleep duration or remove it if you want.– Aquadarius
Mar 21 '17 at 12:05
I had to add the
sleep command because of the delay of the animation. In other words, before adding it, I have seen many occurrences where the second send was ignored because it is executed too fast. You may modify the sleep duration or remove it if you want.– Aquadarius
Mar 21 '17 at 12:05
2
2
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
Ahh. You can also remove it completely if you turn off "Animate windows when minimizing and maximizing" (win+x > system > advanced system settings > performance settings).
– Matt
Mar 21 '17 at 12:23
add a comment |
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
- Create a text file named 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 find the startup folder in Windows 10, open "Run" (press Win + R, or search for it in the Start menu) and type either (without quotes): "shell:startup" for the current user, or "shell:common startup" for all users. Copy startup.ahk to the folder that opens.
1
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
7
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
add a comment |
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
- Create a text file named 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 find the startup folder in Windows 10, open "Run" (press Win + R, or search for it in the Start menu) and type either (without quotes): "shell:startup" for the current user, or "shell:common startup" for all users. Copy startup.ahk to the folder that opens.
1
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
7
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
add a comment |
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
- Create a text file named 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 find the startup folder in Windows 10, open "Run" (press Win + R, or search for it in the Start menu) and type either (without quotes): "shell:startup" for the current user, or "shell:common startup" for all users. Copy startup.ahk to the folder that opens.
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
- Create a text file named 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 find the startup folder in Windows 10, open "Run" (press Win + R, or search for it in the Start menu) and type either (without quotes): "shell:startup" for the current user, or "shell:common startup" for all users. Copy startup.ahk to the folder that opens.
answered Oct 24 '15 at 8:30
harrymcharrymc
265k14274583
265k14274583
1
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
7
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
add a comment |
1
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
7
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
1
1
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
I was thinking that I’d have to write my own script for this. Good thing someone already did it so that I wouldn't have to reinvent the wheel!
– answerSeeker
Oct 24 '15 at 17:47
7
7
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
It still baffles me Windows doesn't add features to change keyboard shortcuts. 20 years later even. Wow. Amen to AutoHotkey.
– Ligemer
May 26 '17 at 1:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
Do you have to restart your computer after that in order for it to work?
– Red M
Jan 12 '18 at 21:48
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
@RedM: startup.ahk should already be running after testing. For future boots it will startup during the boot.
– harrymc
Jan 12 '18 at 22:18
add a comment |
protected by Community♦ Nov 5 '16 at 15:15
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?