Top Rated
Top Rated
Recent Posts
Archives
- September 2011
- February 2011
- August 2010
- May 2010
- November 2009
- June 2009
- April 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
- February 2004
- January 2004
Tags
Art
ChipX86.com
Devices
Django
Djblets
Dream-Theater
Gaim
Galago
gameboy-ds
Games
GNOME
Hardware
IBM
Jamie
Jenna
Lenovo
libnotify
libsexy
Life
Linux
Linux Desktop
Mario-Bros
Nintendo
Nokia 770
notification-daemon
Open Source
Pictures
Pirate
Products
Projects
Purchases
Python
Releases
Review-Board
Server
Thinkpad
TV
Ubuntu
Unity
Vacation
VMware
Wii
Workstation
Yahoo
Zelda




Why on earth would a critical urgency notification dismiss itself in 10 seconds? Or conversely, why would a self-dismissing notification be critical? =)
Excellent questions
I’m going to use the excuse that everybody likes self-destructing messages, which are usually pretty critical and, well, have to self-destruct sometime.
Christian: those new alert dialogs look very sexy, if you don’t mind my saying so. :-]
Great stuff! I remember looking over the notification mockups, and then the spec and now it’s so cool to see this in action. I look forward to our pop-tart future
Some mockup years ago show countdown as emptying progress bar. You know, that grey/blue/red stripe on left side shortening, and shortening till timeout.
Peter: Not at all
They are sexy.
Ed: If you run Ubuntu Breezy, you already have support on your system
This is just a new release with pretty new styles.
Tomasz: Yeah. I considered that, but I felt that the pie countdown method was a lot cleaner and out of the way.
This is cool stuff. I’m wondering if it’s possible to send some notification from the commandline, using dbus-send maybe? I’m not all that familiar with dbus and it doesn’t seem all that straightforward to me, even with the use of Google.
Richard: libnotify contains a notify-send tool that allows for easily sending notifications on the comand line. I use it in many of my tests.
Argh! Please don’t transfer the “Low Disk Space” nightmare from Windows to Linux. It’s bad enough that this sucker pops up every few minutes on Windows and there is no way other than to edit the registry to turn this major annoyance off. *Please* tell me that Gnome handles this in a more intelligent way.
I’m still using Hoary Hedgehog, and refuse to upgrade until Dapper
Thanks for the work.
They’re really sexy, I really like more that blue thing earlier. December mockups are cool & I wanna see something like that in gnome’s future.
I like the new features, but I think the look could do with some work – Having the icon centered below the title makes it look lop-sided, as does having it half-in the coloured bit on the side. I think the more subtle colour of the old notifications looked nicer, as well as having the icon centered to both the title and the subtitle, and contained fully in the side. I also preferred the underline hyperlinks to the buttons, but I think that’s much more a taste issue
Otherwise, good work!
Regarding my previous comment, after seeing those same notifications in this mock-up: http://www.flickr.com/photos/gamehack/70003968/in/set-1506658/
They do look very nice
Great work – my thoughts
1. spruce up the icons a bit so they are larger, standard sizes, and at the proper resolution
2. tone down the red or nix it – anything important enough to be candy-apple red should be a dialog box, not a notification, and should wait for your intervention
3. kill the countdoom of doom – if they miss a notification they should check the log. If the logs are too scary, let’s fix that in 2.16. If we can’t afford to miss it, it should’nt dissapear
Thanks for all you do!
–Rob Caskey
Dennis: That was a unit test for actions. If people do implement it, it honestly doesn’t bug me. In fact, it would be helpful at times. There’s no reason why it couldn’t be made to be easily disabled.
Chris: I think they look nice. The icons used in the screenshots may not be the best, but they’re looking beautiful here in real-world usage. The nice thing is, if you like the old look, you could just backport the theme from 0.3.2, rename it, and stick it in your engines dir. However, it would have to be maintained. I may end up just bringing this back as a separate theme for 0.3.5.
Rob: 1) I didn’t make those icons. I don’t see what the notifications have to do with it. 2) That’s for developers using libnotify to take into consideration. That’s not my issue. 3) The countdown is fine. It provides a good indication as to how long a person has to answer a notification, and shows that it will time out otherwise. It’s only for notifications with actions. I’m leaving this feature in.
Looks awesome! Great job Christian!
Christian, very very good work! Are you planning to drop all this stuff into gnome CVS? I think it will speed up libnotify inclusion in gnome.
Thanks for the work.
I agree with what Rob Caskey said in his third point.
“3. kill the countdoom of doom”
I also feel there’s no need for the close button. The notification could be closed by clicking anywhere in the box, or not at all if that’s viewed as better. That way I think things would look cleaner.
The notify-send –help output shows:
-t, –expire-time=INT Specifies the timeout in seconds at which to expire the notification.
The code interprets this as the timeout in MILLIseconds… patch to fix this problem:
— notify-send.c.orig 2006-01-29 13:44:08.000000000 +0100
+++ notify-send.c 2006-03-07 10:47:21.000000000 +0100
@@ -131,7 +131,7 @@
notify = notify_notification_new(summary, body, icon_str, NULL);
notify_notification_set_category(notify, type);
notify_notification_set_urgency(notify, urgency);
- notify_notification_set_timeout(notify, expire_timeout);
+ notify_notification_set_timeout(notify, expire_timeout * 1000);
notify_notification_show(notify, NULL);
g_object_unref(G_OBJECT(notify));