RedHat/CentOS 7.1: Change names of Gnome workspaces
RedHat/CentOS 7.1.1503; GNOME Shell 3.8.4
I name my workspaces after current projects I'm working on (for 1-4 weeks). How can I rename them from "1" "2"... to something like "Vienna" "Berlin"?
In CentOS6 I just right clicked on the workspace panel add-on and renamed them in the properties.
I already found the "Workspace Lables" extension ( https://extensions.gnome.org/extension/551/workspace-labels/ ) but this does not allow me to change the names.
rhel gnome workspaces
add a comment |
RedHat/CentOS 7.1.1503; GNOME Shell 3.8.4
I name my workspaces after current projects I'm working on (for 1-4 weeks). How can I rename them from "1" "2"... to something like "Vienna" "Berlin"?
In CentOS6 I just right clicked on the workspace panel add-on and renamed them in the properties.
I already found the "Workspace Lables" extension ( https://extensions.gnome.org/extension/551/workspace-labels/ ) but this does not allow me to change the names.
rhel gnome workspaces
add a comment |
RedHat/CentOS 7.1.1503; GNOME Shell 3.8.4
I name my workspaces after current projects I'm working on (for 1-4 weeks). How can I rename them from "1" "2"... to something like "Vienna" "Berlin"?
In CentOS6 I just right clicked on the workspace panel add-on and renamed them in the properties.
I already found the "Workspace Lables" extension ( https://extensions.gnome.org/extension/551/workspace-labels/ ) but this does not allow me to change the names.
rhel gnome workspaces
RedHat/CentOS 7.1.1503; GNOME Shell 3.8.4
I name my workspaces after current projects I'm working on (for 1-4 weeks). How can I rename them from "1" "2"... to something like "Vienna" "Berlin"?
In CentOS6 I just right clicked on the workspace panel add-on and renamed them in the properties.
I already found the "Workspace Lables" extension ( https://extensions.gnome.org/extension/551/workspace-labels/ ) but this does not allow me to change the names.
rhel gnome workspaces
rhel gnome workspaces
asked Nov 24 '15 at 16:26
Nico MittenzweyNico Mittenzwey
19617
19617
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
OK, found a way via gsettings:
$ gsettings set org.gnome.desktop.wm.preferences workspace-names "['Com', 'Vienna', 'Test1', 'Test2','Test3']"
$ gsettings set org.gnome.desktop.wm.preferences num-workspaces "5"
add a comment |
Workspace Indicator is a part of the core extensions and allows naming workspaces.
Once installed, go into the extension settings and then double click on the workspace you want to rename.
2
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
add a comment |
I would like to add one thing to the Nico's answer.
When you run this command, if you get the GLib-GIO-Message
:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
check the path to the command. In my case running which gsettings
showed path to the anacoda folder:
.../anaconda3/bin/gsettings
Using absolute path to the system gsettings
solved the problem:
/usr/bin/gsettings set ...
PS. This answer is based on one answer here
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f245178%2fredhat-centos-7-1-change-names-of-gnome-workspaces%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
OK, found a way via gsettings:
$ gsettings set org.gnome.desktop.wm.preferences workspace-names "['Com', 'Vienna', 'Test1', 'Test2','Test3']"
$ gsettings set org.gnome.desktop.wm.preferences num-workspaces "5"
add a comment |
OK, found a way via gsettings:
$ gsettings set org.gnome.desktop.wm.preferences workspace-names "['Com', 'Vienna', 'Test1', 'Test2','Test3']"
$ gsettings set org.gnome.desktop.wm.preferences num-workspaces "5"
add a comment |
OK, found a way via gsettings:
$ gsettings set org.gnome.desktop.wm.preferences workspace-names "['Com', 'Vienna', 'Test1', 'Test2','Test3']"
$ gsettings set org.gnome.desktop.wm.preferences num-workspaces "5"
OK, found a way via gsettings:
$ gsettings set org.gnome.desktop.wm.preferences workspace-names "['Com', 'Vienna', 'Test1', 'Test2','Test3']"
$ gsettings set org.gnome.desktop.wm.preferences num-workspaces "5"
answered Nov 24 '15 at 16:32
Nico MittenzweyNico Mittenzwey
19617
19617
add a comment |
add a comment |
Workspace Indicator is a part of the core extensions and allows naming workspaces.
Once installed, go into the extension settings and then double click on the workspace you want to rename.
2
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
add a comment |
Workspace Indicator is a part of the core extensions and allows naming workspaces.
Once installed, go into the extension settings and then double click on the workspace you want to rename.
2
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
add a comment |
Workspace Indicator is a part of the core extensions and allows naming workspaces.
Once installed, go into the extension settings and then double click on the workspace you want to rename.
Workspace Indicator is a part of the core extensions and allows naming workspaces.
Once installed, go into the extension settings and then double click on the workspace you want to rename.
edited 2 hours ago
lleaff
1033
1033
answered Jun 27 '16 at 11:33
lkraavlkraav
746716
746716
2
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
add a comment |
2
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
2
2
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
The question asks how to do it... perhaps you could elaborate with instructions?
– theMayer
Sep 24 '18 at 15:06
add a comment |
I would like to add one thing to the Nico's answer.
When you run this command, if you get the GLib-GIO-Message
:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
check the path to the command. In my case running which gsettings
showed path to the anacoda folder:
.../anaconda3/bin/gsettings
Using absolute path to the system gsettings
solved the problem:
/usr/bin/gsettings set ...
PS. This answer is based on one answer here
add a comment |
I would like to add one thing to the Nico's answer.
When you run this command, if you get the GLib-GIO-Message
:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
check the path to the command. In my case running which gsettings
showed path to the anacoda folder:
.../anaconda3/bin/gsettings
Using absolute path to the system gsettings
solved the problem:
/usr/bin/gsettings set ...
PS. This answer is based on one answer here
add a comment |
I would like to add one thing to the Nico's answer.
When you run this command, if you get the GLib-GIO-Message
:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
check the path to the command. In my case running which gsettings
showed path to the anacoda folder:
.../anaconda3/bin/gsettings
Using absolute path to the system gsettings
solved the problem:
/usr/bin/gsettings set ...
PS. This answer is based on one answer here
I would like to add one thing to the Nico's answer.
When you run this command, if you get the GLib-GIO-Message
:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
check the path to the command. In my case running which gsettings
showed path to the anacoda folder:
.../anaconda3/bin/gsettings
Using absolute path to the system gsettings
solved the problem:
/usr/bin/gsettings set ...
PS. This answer is based on one answer here
answered Jan 27 '18 at 11:18
CeldorCeldor
1113
1113
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f245178%2fredhat-centos-7-1-change-names-of-gnome-workspaces%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