Please note that LinuxExchange will be shutting down on December 31st, 2016. Visit this thread for additional information and to provide feedback.

2
1

I'm running StumpWM and currently my girlfriend is sharing this computer. She needs IceWM, which is more conventional.

I want to be able to switch between workspaces using Ctrl-Alt-F8 and Ctrl-8-F7.

But if I do

$ startx -- :1

from a console, under my login while X is running under my girlfriend's login, I get the errors

Could not set DRM Device Bus ID, and Invalid MIT-MAGIC-COOKIE-1-Key (displayed multiple times)

If I try

Xephyr :1

from an xterm, I get the error

Xephyr cannot open host display, is display set?

Is what I'm trying to do possible? Any help appreciated.

asked 26 Jul '10, 07:41

Andrew's gravatar image

Andrew
2112
accept rate: 0%

Please accept an answer so the question/answer can be finished. Or provide more details so we can help.

(20 Apr '11, 14:08) rfelsburg ♦



I don't have the solution for your problem, but I managed to run 2 wm at the same time, albeit one of them (kde, openbox,etc.) is on a window inside another wm (gnome,etc.). I created the following bash script:

#!/bin/bash
xhost +local:username
Xephyr -screen 800x600 -reset -terminate -extension GLX 2>/dev/null :1 &
export DISPLAY=:1

startkde &

Where 'username' is your username (obviously!); You must have 'Xephyr' installed; Screen size is 800x600. Instead of 'startkde' use the executable of your wm.

It worked for me. Tested on Ubuntu 9.04.

link

answered 01 Aug '10, 22:28

anonymous's gravatar image

anonymous
111
accept rate: 0%

Ah. That works a treat. But I didn't need to use Xephyr. Infact, all that was needed was:

export DISPLAY=:1 startx

typed in on a console!

(10 Aug '10, 09:32) Andrew

What X session manager do you use? I use GDM and I have no problems using multiple window managers. I use AwesomeWM and my girlfriend uses Metacity. I have simply set the following gconf key to awesome:

/desktop/gnome/session/required_components/windowmanager

Works like a charm. GDM takes care of the rest.

link

answered 28 Jul '10, 07:49

Sander%20Marechal's gravatar image

Sander Marechal
398116
accept rate: 29%

Thanks for your suggestion. I use no X-session manager, just startx. Been wanting to keep it that way. Have found that the solution below works.

(10 Aug '10, 09:32) Andrew
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×5

Asked: 26 Jul '10, 07:41

Seen: 8,191 times

Last updated: 20 Apr '11, 14:08

powered by OSQA