Read more

Linux: How to add a task bar to VNC displays

Arne Hartherz
June 04, 2012Software engineer at makandra GmbH

If you are using VNC to run Selenium tests, it may be hard to see what's going on since by default there is no list of open windows and Alt+Tab won't work.

Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

Solving that is easy:

  1. Install a panel of your choice (like lxpanel) which offers task switching:

    sudo apt-get install lxpanel
    

    (You can't use gnome-panel because it won't start twice -- but lxpanel does a good job)

  2. To have that panel appear on VNC screens by default, edit ~/.vnc/xstartup and add an entry to start it, at the end of the file. For example:

    lxpanel & 
    
  3. (Re)start your VNC session.

Posted by Arne Hartherz to makandra dev (2012-06-04 15:07)