5

I wish to replace my current desktop view with a web-browser view of a specified URL and still be able to open more windows of whatever application I so choose; how would one go about accomplishing that?

I am comfortable with the command line and have programming experience, but a barebones solution would be most appreciated.

I found this related question, but I'm not sure if that's the right direction to go.

Any geniuses?

1 Answers1

1

After replacing the desktop with a browser instance you will not be able to run additional applications - at least not the way you presumably like them to. In that case you should just leave your Xsession the way it was configured.

Let me suggest you add the following command to your autostart applications:

xdg-open <url>

This will open the given URL in your default browser. Of course you will have to configure this browser to always start in fullscreen if this was needed.

In case you run Firefox you may also create a specific profile for you user and run it with the following command in autostart applications:

firefox -profile "<profile_path>" 
Takkat
  • 142,284
  • I am aware the desktop would have to behave slightly differently, but other that my current desktop background beeing replaced with an "active desktop" the likes of what Windows XP tried to achieve in it's time. Am i too short sighted? – user85003 Aug 25 '12 at 04:08
  • @user85003: in order to also click an run other applications you need a full blown windows manager. You can load this in a custom session but then there will be not really much advantage as to just autostart the app in question. – Takkat Aug 25 '12 at 10:06