Can't find “Switch to workspace action” listed in keyboard shortcuts
I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.
Here is a screenshot:

18.04 shortcut-keys
add a comment |
I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.
Here is a screenshot:

18.04 shortcut-keys
add a comment |
I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.
Here is a screenshot:

18.04 shortcut-keys
I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.
Here is a screenshot:

18.04 shortcut-keys
18.04 shortcut-keys
asked Jan 10 at 21:13
user1015214user1015214
1236
1236
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Using dconf-editor
The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.
Using the terminal
Settings can also be changed using the terminal. For example, to list all available keys, issue the command
gsettings list-keys org.gnome.desktop.wm.keybindings
To learn about what a key contains:
gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down
(Tip: Tab-completion works to complete the names of the schema's and keys)
To remove <Control><Alt><Down>, redefine the key:
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']
To reset to default:
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1108690%2fcant-find-switch-to-workspace-action-listed-in-keyboard-shortcuts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Using dconf-editor
The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.
Using the terminal
Settings can also be changed using the terminal. For example, to list all available keys, issue the command
gsettings list-keys org.gnome.desktop.wm.keybindings
To learn about what a key contains:
gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down
(Tip: Tab-completion works to complete the names of the schema's and keys)
To remove <Control><Alt><Down>, redefine the key:
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']
To reset to default:
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
add a comment |
Using dconf-editor
The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.
Using the terminal
Settings can also be changed using the terminal. For example, to list all available keys, issue the command
gsettings list-keys org.gnome.desktop.wm.keybindings
To learn about what a key contains:
gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down
(Tip: Tab-completion works to complete the names of the schema's and keys)
To remove <Control><Alt><Down>, redefine the key:
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']
To reset to default:
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
add a comment |
Using dconf-editor
The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.
Using the terminal
Settings can also be changed using the terminal. For example, to list all available keys, issue the command
gsettings list-keys org.gnome.desktop.wm.keybindings
To learn about what a key contains:
gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down
(Tip: Tab-completion works to complete the names of the schema's and keys)
To remove <Control><Alt><Down>, redefine the key:
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']
To reset to default:
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down
Using dconf-editor
The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.
Using the terminal
Settings can also be changed using the terminal. For example, to list all available keys, issue the command
gsettings list-keys org.gnome.desktop.wm.keybindings
To learn about what a key contains:
gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down
(Tip: Tab-completion works to complete the names of the schema's and keys)
To remove <Control><Alt><Down>, redefine the key:
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']
To reset to default:
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down
answered Jan 11 at 11:58
vanadiumvanadium
5,50011229
5,50011229
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
add a comment |
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....
– user1015214
Jan 11 at 13:54
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.
– vanadium
Jan 11 at 20:28
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1108690%2fcant-find-switch-to-workspace-action-listed-in-keyboard-shortcuts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown