13.04 - more than four workspace shortcuts in GNOME Flashback (No effects)
I'm using GNOME Flashback (No effects) on Ubuntu 13.04 and I've got six workspaces however when entering System Settings -> Keyboard -> Shortcuts -> Navigation I only see options to address the initial four.
It used to be options up to 12 workspaces there and as I certainly don't need that much, I want to have at least enough for the amount currently active.
How can I restore or add more shotcuts specifically to navigate and move windows to workspace 5 and 6?
gnome shortcut-keys workspaces workspace-switcher
add a comment |
I'm using GNOME Flashback (No effects) on Ubuntu 13.04 and I've got six workspaces however when entering System Settings -> Keyboard -> Shortcuts -> Navigation I only see options to address the initial four.
It used to be options up to 12 workspaces there and as I certainly don't need that much, I want to have at least enough for the amount currently active.
How can I restore or add more shotcuts specifically to navigate and move windows to workspace 5 and 6?
gnome shortcut-keys workspaces workspace-switcher
add a comment |
I'm using GNOME Flashback (No effects) on Ubuntu 13.04 and I've got six workspaces however when entering System Settings -> Keyboard -> Shortcuts -> Navigation I only see options to address the initial four.
It used to be options up to 12 workspaces there and as I certainly don't need that much, I want to have at least enough for the amount currently active.
How can I restore or add more shotcuts specifically to navigate and move windows to workspace 5 and 6?
gnome shortcut-keys workspaces workspace-switcher
I'm using GNOME Flashback (No effects) on Ubuntu 13.04 and I've got six workspaces however when entering System Settings -> Keyboard -> Shortcuts -> Navigation I only see options to address the initial four.
It used to be options up to 12 workspaces there and as I certainly don't need that much, I want to have at least enough for the amount currently active.
How can I restore or add more shotcuts specifically to navigate and move windows to workspace 5 and 6?
gnome shortcut-keys workspaces workspace-switcher
gnome shortcut-keys workspaces workspace-switcher
asked Aug 13 '13 at 22:36
Samus_Samus_
76257
76257
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
The only way I have found to modify the keyboard shortcuts for workspaces 5 and up in GNOME Flashback, is through a shell using the dconf
command.
$ dconf read /org/gnome/desktop/wm/keybindings/switch-to-workspace-1
['<Primary>F1']
Here I read the shortcut setting for the first workspace, to get an idea about the syntax to use when setting values for the missing shortcuts. I'm using CTRL
+ F1
myself.
To add shortcuts for the remaining workspaces, just modify the value returned above to match the workspace number, and use dconf
to apply them:
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Primary>F5']"
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-6 "['<Primary>F6']"
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
add a comment |
Maybe a slightly more comfortable way then using dconf on the command line is dconf-editor. Run dconf-editor and then navigate to
org -> gnome -> desktop ->wm ->keybindings
There you can find and edit the switch-to-workspace and move-to-workspace commands for workspaces 1 through 9.
add a comment |
I don't know how to add more shortcuts but you can use alt+ctrl+right/left arrow to move between the workspaces
(and you can use alt+ctrl+shift+right/left arrows to move windows to other workspaces)
I always use those
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
add a comment |
hey I found something!
go to system settings (from the applications menu up to the left, utilities, system settings)
click "keyboard"
click the "shortcuts" tab
click "navigation" (should be the second item on the menu to the left)
"switch to workspace _" those should be the ones! ... and you have many other shortcut options to tweak!
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
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%2f332264%2f13-04-more-than-four-workspace-shortcuts-in-gnome-flashback-no-effects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The only way I have found to modify the keyboard shortcuts for workspaces 5 and up in GNOME Flashback, is through a shell using the dconf
command.
$ dconf read /org/gnome/desktop/wm/keybindings/switch-to-workspace-1
['<Primary>F1']
Here I read the shortcut setting for the first workspace, to get an idea about the syntax to use when setting values for the missing shortcuts. I'm using CTRL
+ F1
myself.
To add shortcuts for the remaining workspaces, just modify the value returned above to match the workspace number, and use dconf
to apply them:
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Primary>F5']"
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-6 "['<Primary>F6']"
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
add a comment |
The only way I have found to modify the keyboard shortcuts for workspaces 5 and up in GNOME Flashback, is through a shell using the dconf
command.
$ dconf read /org/gnome/desktop/wm/keybindings/switch-to-workspace-1
['<Primary>F1']
Here I read the shortcut setting for the first workspace, to get an idea about the syntax to use when setting values for the missing shortcuts. I'm using CTRL
+ F1
myself.
To add shortcuts for the remaining workspaces, just modify the value returned above to match the workspace number, and use dconf
to apply them:
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Primary>F5']"
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-6 "['<Primary>F6']"
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
add a comment |
The only way I have found to modify the keyboard shortcuts for workspaces 5 and up in GNOME Flashback, is through a shell using the dconf
command.
$ dconf read /org/gnome/desktop/wm/keybindings/switch-to-workspace-1
['<Primary>F1']
Here I read the shortcut setting for the first workspace, to get an idea about the syntax to use when setting values for the missing shortcuts. I'm using CTRL
+ F1
myself.
To add shortcuts for the remaining workspaces, just modify the value returned above to match the workspace number, and use dconf
to apply them:
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Primary>F5']"
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-6 "['<Primary>F6']"
The only way I have found to modify the keyboard shortcuts for workspaces 5 and up in GNOME Flashback, is through a shell using the dconf
command.
$ dconf read /org/gnome/desktop/wm/keybindings/switch-to-workspace-1
['<Primary>F1']
Here I read the shortcut setting for the first workspace, to get an idea about the syntax to use when setting values for the missing shortcuts. I'm using CTRL
+ F1
myself.
To add shortcuts for the remaining workspaces, just modify the value returned above to match the workspace number, and use dconf
to apply them:
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Primary>F5']"
$ dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-6 "['<Primary>F6']"
answered Feb 28 '14 at 10:57
Lars HaugsethLars Haugseth
1,0122914
1,0122914
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
add a comment |
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
works on 15.04 as well, thank you
– jcupitt
Aug 17 '15 at 7:45
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
Aha, there they are! Can somebody explain why the answer with -1 votes is above the correct answer with 6 votes?
– Hubro
Oct 5 '15 at 3:16
add a comment |
Maybe a slightly more comfortable way then using dconf on the command line is dconf-editor. Run dconf-editor and then navigate to
org -> gnome -> desktop ->wm ->keybindings
There you can find and edit the switch-to-workspace and move-to-workspace commands for workspaces 1 through 9.
add a comment |
Maybe a slightly more comfortable way then using dconf on the command line is dconf-editor. Run dconf-editor and then navigate to
org -> gnome -> desktop ->wm ->keybindings
There you can find and edit the switch-to-workspace and move-to-workspace commands for workspaces 1 through 9.
add a comment |
Maybe a slightly more comfortable way then using dconf on the command line is dconf-editor. Run dconf-editor and then navigate to
org -> gnome -> desktop ->wm ->keybindings
There you can find and edit the switch-to-workspace and move-to-workspace commands for workspaces 1 through 9.
Maybe a slightly more comfortable way then using dconf on the command line is dconf-editor. Run dconf-editor and then navigate to
org -> gnome -> desktop ->wm ->keybindings
There you can find and edit the switch-to-workspace and move-to-workspace commands for workspaces 1 through 9.
answered Dec 22 '16 at 10:27
i4hi4h
1411
1411
add a comment |
add a comment |
I don't know how to add more shortcuts but you can use alt+ctrl+right/left arrow to move between the workspaces
(and you can use alt+ctrl+shift+right/left arrows to move windows to other workspaces)
I always use those
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
add a comment |
I don't know how to add more shortcuts but you can use alt+ctrl+right/left arrow to move between the workspaces
(and you can use alt+ctrl+shift+right/left arrows to move windows to other workspaces)
I always use those
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
add a comment |
I don't know how to add more shortcuts but you can use alt+ctrl+right/left arrow to move between the workspaces
(and you can use alt+ctrl+shift+right/left arrows to move windows to other workspaces)
I always use those
I don't know how to add more shortcuts but you can use alt+ctrl+right/left arrow to move between the workspaces
(and you can use alt+ctrl+shift+right/left arrows to move windows to other workspaces)
I always use those
answered Nov 14 '13 at 23:54
Mina MichaelMina Michael
4,0871860121
4,0871860121
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
add a comment |
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
I use those but I also like to jump to a specific one, thanks anyway.
– Samus_
Jan 3 '14 at 14:09
add a comment |
hey I found something!
go to system settings (from the applications menu up to the left, utilities, system settings)
click "keyboard"
click the "shortcuts" tab
click "navigation" (should be the second item on the menu to the left)
"switch to workspace _" those should be the ones! ... and you have many other shortcut options to tweak!
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
add a comment |
hey I found something!
go to system settings (from the applications menu up to the left, utilities, system settings)
click "keyboard"
click the "shortcuts" tab
click "navigation" (should be the second item on the menu to the left)
"switch to workspace _" those should be the ones! ... and you have many other shortcut options to tweak!
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
add a comment |
hey I found something!
go to system settings (from the applications menu up to the left, utilities, system settings)
click "keyboard"
click the "shortcuts" tab
click "navigation" (should be the second item on the menu to the left)
"switch to workspace _" those should be the ones! ... and you have many other shortcut options to tweak!
hey I found something!
go to system settings (from the applications menu up to the left, utilities, system settings)
click "keyboard"
click the "shortcuts" tab
click "navigation" (should be the second item on the menu to the left)
"switch to workspace _" those should be the ones! ... and you have many other shortcut options to tweak!
answered Jan 3 '14 at 14:52
Mina MichaelMina Michael
4,0871860121
4,0871860121
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
add a comment |
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
like I said, it "used" to be there but it isn't on recent versions.
– Samus_
Apr 3 '14 at 0:12
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
In the most recent version of Gnome, it only lists workspaces 1 through 4
– Hubro
Oct 5 '15 at 3:16
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f332264%2f13-04-more-than-four-workspace-shortcuts-in-gnome-flashback-no-effects%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