Ubuntu 17.10, change wm
Now that Ubuntu 17.10 uses Gnome, how can we easly change the window manager to use after login in?
With unity we could easly change the wm in the login area, what about now?
window-manager
add a comment |
Now that Ubuntu 17.10 uses Gnome, how can we easly change the window manager to use after login in?
With unity we could easly change the wm in the login area, what about now?
window-manager
2
Do you meansudo apt install gdm
orsudo apt install lightdm
?
– user680858
Nov 24 '17 at 16:55
17.10 uses gdm by default, omgubuntu.co.uk/2017/09/ubuntu-17-10-login-screen-preview
– Joe Corneli
Dec 2 '17 at 0:48
add a comment |
Now that Ubuntu 17.10 uses Gnome, how can we easly change the window manager to use after login in?
With unity we could easly change the wm in the login area, what about now?
window-manager
Now that Ubuntu 17.10 uses Gnome, how can we easly change the window manager to use after login in?
With unity we could easly change the wm in the login area, what about now?
window-manager
window-manager
asked Nov 24 '17 at 16:44
Ricardo PimentelRicardo Pimentel
612
612
2
Do you meansudo apt install gdm
orsudo apt install lightdm
?
– user680858
Nov 24 '17 at 16:55
17.10 uses gdm by default, omgubuntu.co.uk/2017/09/ubuntu-17-10-login-screen-preview
– Joe Corneli
Dec 2 '17 at 0:48
add a comment |
2
Do you meansudo apt install gdm
orsudo apt install lightdm
?
– user680858
Nov 24 '17 at 16:55
17.10 uses gdm by default, omgubuntu.co.uk/2017/09/ubuntu-17-10-login-screen-preview
– Joe Corneli
Dec 2 '17 at 0:48
2
2
Do you mean
sudo apt install gdm
or sudo apt install lightdm
?– user680858
Nov 24 '17 at 16:55
Do you mean
sudo apt install gdm
or sudo apt install lightdm
?– user680858
Nov 24 '17 at 16:55
17.10 uses gdm by default, omgubuntu.co.uk/2017/09/ubuntu-17-10-login-screen-preview
– Joe Corneli
Dec 2 '17 at 0:48
17.10 uses gdm by default, omgubuntu.co.uk/2017/09/ubuntu-17-10-login-screen-preview
– Joe Corneli
Dec 2 '17 at 0:48
add a comment |
1 Answer
1
active
oldest
votes
You can still change the WM's in the login area, but you need to have them installed and configured properly in order for them to show up.
E.g., if you run sudo apt install xfce4
and then log out, you will see the familiar "gear" widget to switch between "Ubuntu on Xorg" and XFCE.
[ However, switching to XFCE doesn't actually work... So I'm changing this answer to "community wiki" in case anyone can supply more details. ]
If you've installed some other window manager that doesn't do all of the configuration steps automatically you may need to create a new "desktop" entry in /usr/share/xsessions
.
Instructions for Ratpoison are here, for example, but it would be similar in other cases.
So this answer is relatively self-contained, I'll copy the key bits here. Run a command like this: sudo nano /usr/share/xsessions/ratpoison.desktop
and add the following contents:
[Desktop Entry]
Name=Ratpoison
Comment=This session logs you into Ratpoison
Exec=/usr/bin/ratpoison
TryExec=/usr/bin/ratpoison
Icon=
Type=Application
X-Ubuntu-Gettext-Domain=ratpoison-session
I also installed Lubuntu via sudo apt-get install lubuntu-desktop
, maybe this makes a difference.
[ Booting to Ratpoison now works for me, yay! ]
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%2f979865%2fubuntu-17-10-change-wm%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
You can still change the WM's in the login area, but you need to have them installed and configured properly in order for them to show up.
E.g., if you run sudo apt install xfce4
and then log out, you will see the familiar "gear" widget to switch between "Ubuntu on Xorg" and XFCE.
[ However, switching to XFCE doesn't actually work... So I'm changing this answer to "community wiki" in case anyone can supply more details. ]
If you've installed some other window manager that doesn't do all of the configuration steps automatically you may need to create a new "desktop" entry in /usr/share/xsessions
.
Instructions for Ratpoison are here, for example, but it would be similar in other cases.
So this answer is relatively self-contained, I'll copy the key bits here. Run a command like this: sudo nano /usr/share/xsessions/ratpoison.desktop
and add the following contents:
[Desktop Entry]
Name=Ratpoison
Comment=This session logs you into Ratpoison
Exec=/usr/bin/ratpoison
TryExec=/usr/bin/ratpoison
Icon=
Type=Application
X-Ubuntu-Gettext-Domain=ratpoison-session
I also installed Lubuntu via sudo apt-get install lubuntu-desktop
, maybe this makes a difference.
[ Booting to Ratpoison now works for me, yay! ]
add a comment |
You can still change the WM's in the login area, but you need to have them installed and configured properly in order for them to show up.
E.g., if you run sudo apt install xfce4
and then log out, you will see the familiar "gear" widget to switch between "Ubuntu on Xorg" and XFCE.
[ However, switching to XFCE doesn't actually work... So I'm changing this answer to "community wiki" in case anyone can supply more details. ]
If you've installed some other window manager that doesn't do all of the configuration steps automatically you may need to create a new "desktop" entry in /usr/share/xsessions
.
Instructions for Ratpoison are here, for example, but it would be similar in other cases.
So this answer is relatively self-contained, I'll copy the key bits here. Run a command like this: sudo nano /usr/share/xsessions/ratpoison.desktop
and add the following contents:
[Desktop Entry]
Name=Ratpoison
Comment=This session logs you into Ratpoison
Exec=/usr/bin/ratpoison
TryExec=/usr/bin/ratpoison
Icon=
Type=Application
X-Ubuntu-Gettext-Domain=ratpoison-session
I also installed Lubuntu via sudo apt-get install lubuntu-desktop
, maybe this makes a difference.
[ Booting to Ratpoison now works for me, yay! ]
add a comment |
You can still change the WM's in the login area, but you need to have them installed and configured properly in order for them to show up.
E.g., if you run sudo apt install xfce4
and then log out, you will see the familiar "gear" widget to switch between "Ubuntu on Xorg" and XFCE.
[ However, switching to XFCE doesn't actually work... So I'm changing this answer to "community wiki" in case anyone can supply more details. ]
If you've installed some other window manager that doesn't do all of the configuration steps automatically you may need to create a new "desktop" entry in /usr/share/xsessions
.
Instructions for Ratpoison are here, for example, but it would be similar in other cases.
So this answer is relatively self-contained, I'll copy the key bits here. Run a command like this: sudo nano /usr/share/xsessions/ratpoison.desktop
and add the following contents:
[Desktop Entry]
Name=Ratpoison
Comment=This session logs you into Ratpoison
Exec=/usr/bin/ratpoison
TryExec=/usr/bin/ratpoison
Icon=
Type=Application
X-Ubuntu-Gettext-Domain=ratpoison-session
I also installed Lubuntu via sudo apt-get install lubuntu-desktop
, maybe this makes a difference.
[ Booting to Ratpoison now works for me, yay! ]
You can still change the WM's in the login area, but you need to have them installed and configured properly in order for them to show up.
E.g., if you run sudo apt install xfce4
and then log out, you will see the familiar "gear" widget to switch between "Ubuntu on Xorg" and XFCE.
[ However, switching to XFCE doesn't actually work... So I'm changing this answer to "community wiki" in case anyone can supply more details. ]
If you've installed some other window manager that doesn't do all of the configuration steps automatically you may need to create a new "desktop" entry in /usr/share/xsessions
.
Instructions for Ratpoison are here, for example, but it would be similar in other cases.
So this answer is relatively self-contained, I'll copy the key bits here. Run a command like this: sudo nano /usr/share/xsessions/ratpoison.desktop
and add the following contents:
[Desktop Entry]
Name=Ratpoison
Comment=This session logs you into Ratpoison
Exec=/usr/bin/ratpoison
TryExec=/usr/bin/ratpoison
Icon=
Type=Application
X-Ubuntu-Gettext-Domain=ratpoison-session
I also installed Lubuntu via sudo apt-get install lubuntu-desktop
, maybe this makes a difference.
[ Booting to Ratpoison now works for me, yay! ]
edited Dec 11 '17 at 17:06
community wiki
2 revs
Joe Corneli
add a comment |
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%2f979865%2fubuntu-17-10-change-wm%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
2
Do you mean
sudo apt install gdm
orsudo apt install lightdm
?– user680858
Nov 24 '17 at 16:55
17.10 uses gdm by default, omgubuntu.co.uk/2017/09/ubuntu-17-10-login-screen-preview
– Joe Corneli
Dec 2 '17 at 0:48