Stepping into the future with GNOME Shell

Decided to join the early adopters crowd today and use the desktop of the future by switching to using GNOME Shell on my desktop. Luckily with Fedora its dead simple, you just yum install gnome-shell and then switch using the desktop effects widget under Preferences. Scarily simple.

So far GNOME shell has been very stable for me and the user experience has been mostly good. Still feels a little alien compared to what I was used to before, but nothing annoyingly alien. Only irritant so far is that the clock on the shell is using the luddite AM/PM time system instead of the proper 24H clock and I can’t figure out how/where to fix it. :)

Will report back next week if I decided GNOME shell is here to stay on my desktop or if its still needs some more love before I am ready to let it rule my life.

6 thoughts on “Stepping into the future with GNOME Shell

  1. This is an ugly, temporary hack, but using the F12 package, I directly modified /usr/share/gnome-shell/js/ui/panel.js with this:

    464c464
    this._clock.set_text(displayDate.toLocaleFormat(_(“%a %Y-%m-%d %H:%M”)));

    So, right now, I get
    Fr 2010-03-05 23:33

  2. Er, my brackets weren’t escaped, so I’ll correct that now:

    464c464
    < this._clock.set_text(displayDate.toLocaleFormat(_(“%a %l:%M %p”)));

    > this._clock.set_text(displayDate.toLocaleFormat(_(“%a %Y-%m-%d %H:%M”)));

Comments are closed.