kamilion / customizer

Ubuntu Live CD remastering tool
GNU General Public License v2.0
306 stars 94 forks source link

Request #8

Closed psycato closed 12 years ago

psycato commented 12 years ago

Is it possible to use xephyr to enter different users desktop?

Say, if I would like to set different desktopbackgrounds for different users, and not just for the root user.

regards, Cato

fluxer commented 12 years ago

I will not implement that but you should be able to do so by modifying the common file, line 158 (https://github.com/fluxer/Customizer/blob/master/common). Just change "env HOME=/root..." to "env HOME=/home/" to the desired user home directory. Note that the user must exists for this to work and the home directory should also be created.

Line 88-90 should be deleted from xnest (https://github.com/fluxer/Customizer/blob/master/scripts/xnest) or the changes will also be saved for the other users (which are added later such as the live user).

It is not impossible but you'd better do it by hand by thinkering with configs files for the specifiec user (this depends on the desktop environment) or write a hook to do this for you to save you time when rebuilding ISOs rather than modifying scripts and losing the changes on the next update of Customizer.

psycato commented 12 years ago

Sounds easy enough. Noted! Thanks again for the prompt reply!

C