Update: Please see this forum thread for details.

What is “Desktop 2.0?”

“Desktop 2.0″ is to the operating system what Web 2.0 is to the Internet. The following are the key elements of Desktop 2.0 (unless you’re new to Linux, you may want to skip a large part of the following explanation and go directly to here):

  • Mini programs that provide instant access to information. (E.g. Mac OS X Widgets, Vista Gadgets, Awn Applets, Screenlets, etc.)
  • Instant access to information via “all in one” search applications. (E.g. Spotlight, Deskbar, Affinity, and Vista Instant Search)
  • Web Desktops that try to close the gap between the Internet and the Desktop. In other words, applications that let you access online services (e.g. Facebook and email) without opening a browser. (E.g. The GNOME Online Desktop.)
  • New “desktop shells” that have new designs and focus on ease of use. The term “desktop shell,” is explained here as: “The shell is what users interact with on their computer, and includes everything from how buttons look and window animations to where menus appear and how you browse through files on your hard drive.” The explanation is talking about Windows and things are slightly more complicated on Linux. Nevertheless, the explanation is good enough for out purposes. (Examples of new desktop shells are Gimmie, Awn, Plasma, and Cairo Shell)
  • Design matters! All across the board, we’re seeing a new focus on aesthetics, design, and eyecandy.

Note that many of the above elements often overlap

The following are the GNOME Desktop 2.0 apps that show the most potential:

  • Awn- Awn started out as a dock and rapidly developed until it had went far beyond its original goals. It is becoming a full desktop shell and its main feature (from a Desktop 2.0 standpoint) are Awn Applets. Awn Applets are mini programs that often connect the user to the web (for example, the Gmail, Digg, and Last.fm applets) and add on innovative ways of interacting with the desktop (for example, the Stacks applet).
  • Gimmie- Gimmie is a unique desktop organizer for Linux. It’s designed to allow easy interaction with all the applications, contacts, documents and other things you use every day. (The above was taken from the Gimmie website.)
  • Screenlets- Screenlets are small applications (written in Python) that can be described as “the virtual representation of things lying/standing around on your desk.” (E.g. Sticknotes, clocks, rulers, etc.) The goal of Screenlets is to simplify the creation of fully themeable mini-apps that each solve basic desktop-work-related needs and generally improve the usability and eye-candy of the modern Linux desktop.
  • The Online Desktop- The goal of the GNOME Online Desktop is to adapt the desktop to become the perfect window for online applications like GMail, Photobucket, Facebook, EBay, and Wikipedia.
  • Deskbar- Deskbar is a search bar for GNOME. It supports plugins (called handlers) that allow you to instantly search for anything including emails, local files on your computer, and webpages all with one click of the mouse.

The Problem

Due to Linux’s open nature, code should be easily reusable and developers should be able to work together and build on each others work. Unfortunately, that’s not at all what’s happening.

  • The GNOME community is strongly against anything that can be thought of as “GNOME 3.0.” The GNOME philosophy is that slow gradual improvement is better than major change. In general, that’s fine. However, it has lead to a situation where there is no long term roadmap for a GNOME 3.0 and there are multiple GNOME Desktop 2.0 apps that are being developed independent of GNOME. There needs to be a common vision, goal, and plan.
  • Most of the Desktop 2.0 apps that are being developed for GNOME share common goals and overlap in functionality. The communication between the different projects is virtually nonexistent.
  • Many Awn Applets, Screenlets, Online Desktop “stocks”, and Deskbar search plugins do the exact same thing. There’s lots of duplicate code out there, and multiple developers are working on almost the exact same things without any collaboration. For example, there’s a Gmail Applet for Awn, a Gmail screenlet, a Gmail “stock” for the Online Desktop (I’m “guilty” of coding that one), and a Gmail search plugin for Deskbar. They all share common code and it’s extremely inefficient from a technical and practical point of view.

A Possible Solution

  • There must be a universal applet format. Applets, Screenlets, and “Stocks” all do the exact same thing. Online Desktop Stocks support searche queries and many of them overlap with Deskbar plugins. (E.g. both of them have a plugin/stock to search for files.) There needs to be one applet format that can be loaded by or plugged into any of the aforementioned applications.
  • It’s not enough to use the same format. There should also be a Global Applets/Services Server. The server should handle everything related to the applets (e.g. loading them, reading/writing preferences, etc.) except for actually drawing them on the screen. The drawing and positioning on the screen can be handled by apps like Awn and Screenlets.
  • Applets should even be able to run without actually being drawn on the screen.
  • Example: A Gmail applet should be able to run as a normal Screenlet, an Awn Applet, and a “Service.” If it is run as a “service”, it shouldn’t be displayed on the screen. (In that case, it would notify the user of new emails soley via DBUS and Gnome-Notifications.)
  • The Deskbar should be able to query all currently running applets for information. For example, it should be able to connect to the already running Gmail service or applet and request all emails with the topic “This is a search.”

The logical place to begin coding a Applets Server would be Screenlets. It may make the most sense to split Screenlets (assuming the developers agree, of course) into a core server (like the one mentioned above) and a seperate application that actually draws the Applets/Screenlets on the screen. (I’ll write more about this in a later post, so sorry if it doesn’t make any sense now. The point of this post is to explain the why and not the how.)

Other Conclusions

The Online Desktop, Awn Applets, Screenlets, Gimmie, and Deskbar often overlap. There needs to be more reuse and sharing of code. Universal Applets is only a start.

This article focused only on the GNOME desktop. A comparison to how KDE does things would be interesting. In doing research for this post I ran into KDE Plasmoids. I haven’t tried them yet, but they seem to be a KDE equivalent

February 1, 2008, 1:35 am o'clock

Add your own comment or set a trackback

Currently 8 comments

  1. Comment by Owen Taylor

    You definitely bring up a good point here: there are all sorts of people writing new ways to extend GNOME or replace elements of it (mostly in Python, for some reason or the other :-) , and there is little or no coordination between the projects. Convergence would be really nice to see.

    I do think it’s possible to be over-concerned with people writing code multiple times, especially if the hard backend code can be encapsulated into shared libraries (weather => libgweather, window manager interaction => libwnck, etc.) After all a chance to rewrite something is a chance to get someone involved. :-) . In general, I think it’s a lot easier to write normal python libraries than to create a central “server” process. One of the ideas of the online-desktop project is to have libraries for getting data with change notification (the desktop-data-model) and a single http stack with shared cookies,etc (yet to be done)

  2. Comment by admin

    Owen, even without a server there still should be a universal applets format. What I’m working on is mostly based on the Screenlets API, and the server isn’t absolutely necessary.

    “After all a chance to rewrite something is a chance to get someone involved. :-) .”
    Well, if there’s nothing to rewrite then people will simply find other ways to get involved such as improving the current code. ;)

  3. Comment by Ketil

    Very well put!
    I’m continuing to follow all the ground breaking stuff that is coming out of e.g. Screenlets, AWN and Compiz Fusion, and I’m disappointed of Gnome’s lack of interest in paving new way on the desktop. I just don’t get their conservative approach. It’s coming to the point where I would’ve started using KDE if I hadn’t been so used to Gnome.

    Thanks for these words of wisdom!

  4. Pingback by The Esylum

    [...] See this for an explanation of what Desktop 2.0 is. [...]

  5. Pingback by The Esylum

    [...] created a new branch of Screenlets on Launchpad for Universal Applets. Right now the branch is just the same a trunk, but I’ll be pushing a revision [...]

  6. Pingback by The Esylum

    [...] few weeks ago I wrote up a post explaining the rationale behind the idea. You can find it here: http://theesylum.com/2008/02/01/desktop-20/. There is also a forum thread on the idea here.Please note that much of the information in the first [...]

  7. Pingback by The Esylum

    [...] In the meantime, this post should provide adequate installation instructions and a quick developer overview for those of you who have been asking. If you haven’t already done so, please read this article first. [...]

  8. Pingback by Recent Links Tagged With "onlinedesktop" - JabberTags

    [...] public links >> onlinedesktop Desktop 2.0 Saved by singerjonny on Fri 26-9-2008 Letem světem, internetem #1 Saved by verifex on Thu [...]

Add your own comment



Follow comments according to this article through a RSS 2.0 feed