[00:10] a very noob question: is this command right to find every occurance in every file? andrea@ubuntu:~/Documents/sviluppo/unity-2d$ grep -r 'gconf_client_get_bool' === m_conley_away is now known as m_conley === m_conley is now known as m_conley_away === m_conley_away is now known as m_conley === m_conley is now known as m_conley_away [05:16] good morning [07:03] good morning [07:13] mornin' [07:50] ronoc: ping [07:51] hyperair, hi [07:51] ronoc: there's this ancient bug i forgot about to do with banshee and unity quicklists. [07:51] hyperair, ok, what is it [07:51] 764321 [07:51] bug #764321 [07:51] Launchpad bug 764321 in banshee (Ubuntu) "Please add launcher quicklist for banshee" [Medium,In progress] https://launchpad.net/bugs/764321 [07:51] heh, what a nice number. [07:52] we're just missing a 5. =p [07:54] hyperair, :) ok, I'll talk to the unity guys later about this. [07:54] * ronoc needs to switch distro [07:54] ronoc: thanks [07:54] brb [07:54] ronoc: iirc the bug's just waiting for an ack about whether or not it's a good idea. there's a patch already. [08:38] Hi Guy [08:38] it that possible to have a quicklist entry for an empty Area on the Launcher ? [08:40] I'm thinking about showing options for the launcher when someone clicks on an empty area on the launcher [08:40] You mean like a context-menu? [08:41] When someone right clicks empty space? [08:41] I'd like that, but sorry I don't know if it's possible [08:46] yeah, I mean like a context menu [08:51] since CCSM allows us more options for setting the launcher, I was thinking about a quicklist or context menu that would allow us to change those setting from the launcher itself [09:27] dbarth: njpatel: ping? [09:34] hey guys [09:34] how can I set icon of the indicator by GdkPixBuf [09:34] ? [09:37] hi [09:40] I'm using new libappindicator [09:40] natty [09:43] I have an idea to save generated icon on a harddrive and then load it [09:47] Is there a way to locate an Empty Space on the Launcher ? [10:59] Hi everybody, [10:59] Is there a guide explaining best practices integrating a GTKStatusIcon-based app on Application-indicators ?? [11:02] i.e. is better to migrate gtkstatusicon object to appindicator or to add it to the whitelist gsettings option? === MacSlow is now known as MacSlow|lunch [11:40] fontanon, better to migrate, could I ask what your app is indicating through the statusicon? [11:41] fontanon, https://wiki.ubuntu.com/DesktopExperienceTeam/ApplicationIndicators is the link with some code examples too [11:44] njpatel: this is the app http://live.gnome.org/Wiican [11:45] fontanon, ah, awesome :) [11:45] njpatel: the statusicon indicates whether wiimote could be used or not because of the presence of a bluetooth adaptor [11:45] njpatel: it also bright at some intervals when the wiimote is connected and in use [11:45] mpt, is this someing that could go into ronoc_'s menu? ^ (if not, where's the best place?) [11:46] ronoc_'s menu ?? never heard about that! [11:46] fontanon, so, an appindicator would work pretty much perfectly for that (and libappindicator fallsback to statusicon if the current desktop doesn't have apindicator support, i.e. shell or xfce) [11:46] fontanon, heh, sorry, he's got a hardware/system menu that seems like a good fit [11:46] really !! it auto-fallsback ? [11:47] fontanon, appindicator, yes, I'm like 99% certain :) [11:47] fontanon, https://wiki.ubuntu.com/DesktopExperienceTeam/ApplicationIndicators#Custom_Fallbacks [11:47] njpatel, I agree a standalone menu makes sense for that [11:47] sweet [11:48] Ideally the settings would go into gnome-control-center, but ... well ... upstream ... [11:48] yeah :) [11:48] fontanon, I hope that helps, seems like appindicator is the way to go [11:49] njpatel, mpt how can this affect for wiican being used under gnome3.0 ? [11:50] fontanon, libappindicator detects where there is a appindicator service, if it doesn't exist, then it just takes your Gtk.Menu and creates a Gtk.StatusIcon from it (using the other things you set too i.e. icon) [11:50] I've to confirm but i think appindicator is not allowed as dependency for apps willing to be considered as gnome3 module [11:50] heh, not getting into that :) [11:51] fontanon, in that case it can be an optional dep in your code [11:51] i've seen that for tomboy there's a patch at debian-packaging level for turning it into an appindicator-supported app [11:53] yeah, though ideally it would be upstream [11:54] tomboy case is harder as appindicator doesn't have the functionality it enjoys from statusicon [11:54] but your menu should be the same with both [11:56] Ok, njpatel mpt thank you both guys! [11:56] I'll start with a appindicator-migration branch for wiican, then decide the best way to integrate it into the master [11:56] fontanon, you're welcome, it looks like a cool project [11:56] np dude [11:57] mpt: thank you :) [11:58] ronoc_'s menu here [11:58] ronoc_, I'd like the soup of the day, with bread, then the tuna lasagna [11:59] mpt, coming right up ! === _LibertyZero is now known as LibertyZero === MacSlow|lunch is now known as MacSlow [12:57] Kaleo: hi :) I'm trying to read this value (I'm modifying Unity-2D code, of course) "/apps/nautilus/preferences/confirm_trash" and I don't know if I've to use gconf, gsetting, QConf or GConfItemQmlWrapper. I asked to nerochiaro already but we're both a bit confused about the proper method to use. Can you please point me to the right one and, if possible, an example of how to use it? Thanks :) [13:00] Kaleo: yeah, looks like you left over both code and dependencies for gconf, but you're using dconf almost anywhere [13:10] btw I'll use QConf for the moment... I'll test it asap [13:16] Andy80, nerochiaro: if nautilus is using gconf, then use gconf, if nautilus is using gsettings/dconf then use dconf [13:18] Kaleo, nerochiaro : I don't know what Nautilus is using... I checked the Unity code (I'm fixing a similar bug that was fixed already in Unity: https://bugs.launchpad.net/unity-2d/+bug/730003 ) and it's using gconf.... why I cannot read a gconf value with QConf? isn't it a wrapper? [13:18] Ubuntu bug 730003 in unity-2d "Emptying the trash from the unity sidebar should respect nautilus' "Ask before emptying" setting" [Wishlist,Confirmed] [13:19] Andy: Qconf is a wrapper for dconf. GConfItemQmlWrapper is a wrapper for gconf [13:19] Andy80: ^ [13:21] Andy80: GConfItemQmlWrapper is whan you want to use [13:22] Kaleo: ok... let's change it again :) (3rd time I modify the code :P ) where can I find an example of GConfItemQmlWrapper? I grep-ed all the unity-2d code but I didn't find anything except this: ./libunity-2d-private/src/launcherapplicationslist.h:class GConfItemQmlWrapper; [13:23] Andy80: I don't think there is example of use in there anymore [13:23] Andy80: but in the code of GConfItemQmlWrapper you will find an example [13:23] Andy80: bzr branch lp:gconf-qt [13:23] Andy80: see test.cpp and test.qml [13:24] Kaleo: ok, let me check... [13:26] Kaleo: uhm... it looks like there is only the QML example... and it's quite different from using C++. Is it possible that nobody has still used this class yet? there should be an example out there if someone has... [13:28] Andy80: i explained to you how to use it in PM, no ? [13:28] nerochiaro: right.... sorry :P [13:29] Andy80: don't worry. it's really easy to use anyway, just play with it for a bit and if you still can't get it to work just ping me === m_conley_away is now known as m_conley === MacSlow is now known as MacSlow|dinner [17:18] hi === MacSlow|dinner is now known as MacSlow === Ender is now known as JasonO [18:29] hey, going to try and build Unity from source now [18:30] Binaries plus source occupies how much? Around how much* [18:32] ephan: jason says ~20mb [18:32] Thanks jcastro :) [18:34] jcastro, which reminds me, sudo apt-get source unity installs all dependencies, right? (or most of them) [18:35] ephan: I happen to be doing it now [18:35] I am updating the deps as we speak [18:35] give me like 5 more minutes [18:35] Ok, thanks, I will download Unity source in the meanwhile [18:40] sudo apt-get install bzr cmake compiz-dev gnome-common libbamf-dev \ [18:40] libboost-dev libboost-serialization-dev libcairo2-dev libdbusmenu-glib-dev \ [18:40] libdee-dev libgconf2-dev libgdk-pixbuf2.0-dev libglew1.5-dev \ [18:40] libglewmx1.5-dev libglib2.0-dev libgtest-dev libindicator-dev \ [18:40] libpango1.0-dev libpci-dev libpcre3-dev libpng12-dev libsigc++-2.0-dev \ [18:42] thank you jcastro, installing === DanRabbit_ is now known as DanRabbit [19:24] Kaleo: around? === m_conley is now known as m_conley_away === yofel_ is now known as yofel [22:07] Hi everybody [22:11] Has anyone realized of crashes importing appindicator and gi.repository.Gtk or GObject on a same python app ? [22:20] /usr/lib/pymodules/python2.7/gtk-2.0/gtk/__init__.py:40: Warning: specified class size for type `PyGtkGenericCellRenderer' is smaller than the parent type's `GtkCellRenderer' class size [22:20] when importing appindicator after gi.repository.Gtk [22:20] why is it linking with gtk-2.0 ?