Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to test X Window Manager [closed]

I've tried to write my own (simple, but with few important features) window manager for X Window System. But after writing base (very minimal) I've got problem with testing. I have tried to test on virtual machine, but this way is uncomfortable. So, how to test window manager without login-out from current session?

like image 768
drmgc Avatar asked Dec 30 '13 07:12

drmgc


2 Answers

You can test your window manager in a nested X server. Xnest has been obsoleted by Xephyr so I would suggest the latter for your experiments.

like image 65
jlliagre Avatar answered Oct 12 '22 12:10

jlliagre


Another option is to start up a vnc server on your machine and set your DISPLAY variable to point to that to run your experimental WM.

like image 41
Noufal Ibrahim Avatar answered Oct 12 '22 13:10

Noufal Ibrahim