Re: Oversize icons in PopupImageMenuItem

2016-01-28 Thread Tim Cuthbertson
x27;system-status-icon' > > The above will fix your problem. > > The style class used for the icon of PopupImageMenuItem > changed. > > Regards, > Norman > > > On Thu, 2016-01-28 at 20:16 +1100, Tim Cuthbertson wrote: >> Hi all, >> >> I'v

Oversize icons in PopupImageMenuItem

2016-01-28 Thread Tim Cuthbertson
Hi all, I've been using this code to create a menu full of PopupImageMenuItems unchanged pretty much since I added an indicator to shellshape, and in recent versions of gnome-shell (3.16, maybe even 3.14) the icons got really big: https://github.com/timbertson/shellshape/issues/164 The code behi

Workaround for extension being disabled on screen lock

2013-08-22 Thread Tim Cuthbertson
Hi all, The fact that all extensions have their disable() method called when screen lock starts (and enable() called when the screen is unlocked) is new to me, although it's presumably been around a while. For my shellshape extension (https://extensions.gnome.org/extension/294/shellshape/), this

Extension reviews delayed?

2013-06-20 Thread Tim Cuthbertson
My shellshape extension ( https://extensions.gnome.org/extension/294/shellshape/) has had a pending review for about a week now (for my first 3.8-compatible version, which some users are eager for). I'm not complaining if reviewers are simply busy, but this happened once before and it was just due

Keybinding changes in 3.8?

2013-05-22 Thread Tim Cuthbertson
Hi Folks, I haven't been following GS development much lately, so please forgive me if this has been discussed already (I searched but couldn't find anything, so pointers would be good). I'm the author of shellshape[1][2], and multiple users are telling me that keyboard shortcuts are broken[3] in

Giving windows a maximized look from an extension

2012-05-23 Thread Tim Cuthbertson
I'm investigating giving a "maximized" or "tiled" look to windows managed by shellshape, so they can be styled more compactly [1]. It seems like perhaps setting the META_FRAME_MAXIMIZED or META_FRAME_TILED_* flag is what I want, but I can't figure out how to do that (or if it would work how I want

Delay in extension reviews?

2012-05-18 Thread Tim Cuthbertson
Hi folks, My extension update (shellshape) has been sitting in the review queue on extensions.gnome.org for over a week now. If people are busy or on holiday then no worries, but I thought I'd send a ping in case the notification mechanism for new reviews was broken again ;) Cheers, - Tim. _

Delay in extension reviews?

2012-05-17 Thread Tim Cuthbertson
Hi folks, My extension update (shellshape) has been sitting in the review queue on extensions.gnome.org for over a week now. If people are busy or on holiday then no worries, but I thought I'd send a ping in case the notification mechanism for new reviews was broken again ;) Cheers,  - Tim. _

Re: Signals for when any window changes in any way

2012-05-17 Thread Tim Cuthbertson
On Thu, May 17, 2012 at 9:38 PM, Amy C wrote: > On Thu, May 17, 2012 at 4:36 PM, Jasper St. Pierre > wrote: >> This is what the grab-op-begin/grab-op-end signals are for. > > A further question - how do I know what signals are available to > connect to, is there something I can do in looking-glas

Diagnosing slow session startup

2012-05-17 Thread Tim Cuthbertson
Hi all, I'm not sure that this quite belongs here, but my gnome session (running gnome-shell on fedora 17) takes upwards of 45 seconds before the top panel appears after logging in. Does anyone know how I can diagnose what might be taking so long? Ideally I'd like something like systemd's bootchar

Re: Signals for when any window changes in any way

2012-05-16 Thread Tim Cuthbertson
On Thu, May 17, 2012 at 2:00 PM, Amy C wrote: > Hi all, > > I'm currently having fun porting xpenguins to a gnome shell extension > (yes pointless I know, but fun), and I basically need to keep track of > where every window is on the screen at all times. This is so that > toons can walk on the win

Re: A couple of extension writing questions

2012-05-13 Thread Tim Cuthbertson
On Sun, May 13, 2012 at 7:57 PM, Neil Bird wrote: > >  I'm just putting the final touches to a GNOME Shell extension I've been > writing, and I'd like to ask if anyone has any idea how to achieve some > things I've not been able to find out for myself. > > > - I'd like to use a custom icon.  At th

Re: Using symbolic icons in extensions

2012-05-04 Thread Tim Cuthbertson
On Fri, May 4, 2012 at 9:35 PM, Jasper St. Pierre wrote: > On Fri, May 4, 2012 at 7:24 AM, Tim Cuthbertson wrote: >> I've been trying to figure this out for a while, and it seems like it >> can't be done. >> >> 1) I have got symbolic icons working in a shell

Using symbolic icons in extensions

2012-05-04 Thread Tim Cuthbertson
I've been trying to figure this out for a while, and it seems like it can't be done. 1) I have got symbolic icons working in a shell extension panel button, but *only* by setting the icon_name property on a St.Icon, which requires icons be installed in a system location. 2) If I want to use an ic

"Anatomy of an extension" gives invalid JSON example

2012-04-07 Thread Tim Cuthbertson
Just a minor issue with the website. The "Anatomy of an extension" section on http://live.gnome.org/GnomeShell/Extensions has invalid metadata.json sample - I couldn't get it to work until I changed all the single quotes to double quotes. JSON != Javascript.

enabling a plugin by default

2012-01-10 Thread Tim Cuthbertson
I have a script that runs gnome-shell with my shellshape plugin added to $XDG_DATA_DIRS. This is excellent for people trying out my plugin, since they don't have to commit to installing anything or remember where they put things. One problem with gnome-shell 3.3+ is that you have to enable the plu

meta_display_add_keybinding doesn't allow the same keybinding name under a different schema

2011-12-21 Thread Tim Cuthbertson
I've filed the following bug against mutter: https://bugzilla.gnome.org/show_bug.cgi?id=666513 I just wanted to get the opinion of other extension authors from this list. Have others tried to add their own keybindings in extensions yet? If so, are you concerned about colliding keybinding names acr

Re: Is it possible to develop for Gnome Shell using Coffeescript?

2011-12-21 Thread Tim Cuthbertson
I've used coffeescript for some of my extension (shellshape). You wouldn't be able to use stuff like the `let` keyword, and you have to compile in --bare mode to prevent it from being wrapped in an anonymous function, but other than that it's pretty simple. Oh, and you get bucketloads of warnings

disconnecting signals on disable()

2011-12-19 Thread Tim Cuthbertson
I have an extension (http://gfxmonk.net/shellshape/) that connect()s to a large number of GObject signals on various things (workspaces, displays, windows, etc). Is it good form to dutifully track all these connections and explicitly disconnect() them in my extension's disable() function? I was ho

Re: Extensions, schema, dot-local

2011-11-18 Thread Tim Cuthbertson
On Fri, Nov 18, 2011 at 7:06 AM, Bastien Durel wrote: > Hello, > > I "built" some extensions for gnome shell (3.2.1), one of them is dock > (from gnome-shell-extensions) > I installed them in my ~/.local folder, and they was detected by > gnome-shell. But as soon as I activate the dock, it crashed

Re: GNOME Shell 3.2.0 released

2011-09-30 Thread Tim Cuthbertson
Are there any fedora (15) PPA-like repos that have 3.2 yet or will soon? I'd like to update my extensions, but jhbuild hurts. From the sound of it, 3.2 isn't going to be officially packaged until fedora 16 :/ Cheers, - Tim. 2011/9/30 Jeffery Olson : > Congrats on the release! I'm using it now, f

Re: Keymap/Short-Cut sheet

2011-08-25 Thread Tim Cuthbertson
On Fri, Aug 26, 2011 at 2:40 AM, Adam Tauno Williams wrote: > Came across this for Unity > > > Anyone know of an equivalent for GNOME3/Shell/Gtk? You're aware that unity3d is not the same as ubuntu's unity, right? un

Re: Remap Mod4

2011-08-23 Thread Tim Cuthbertson
On Wed, Aug 24, 2011 at 4:50 AM, Ralph Hofmann wrote: > Am 21.08.2011 15:23, schrieb Jasper St. Pierre: >> >> See https://bugzilla.gnome.org/show_bug.cgi?id=624869 >> >> It's a bug that's fixed in 3.1/3.2 >> >> On Sun, Aug 21, 2011 at 7:37 AM, Ralph Hofmann >>  wrote: >>> >>> Am 21.08.2011 11:39,

Re: Suggestion: Moving from desktop to desktop with the scroll wheel from black bar at the top of the screen.

2011-08-14 Thread Tim Cuthbertson
On Sun, Aug 14, 2011 at 7:37 AM, informalibre montceau wrote: > Hello, > > I wish I could change workspace, after handling the mouse wheel. To do so, > place themselves above the black bar at the top of the screen and make > Rolling the scroll wheel up or down. > > Has to be now, the desktop shoul

Re: Tiling progress

2011-08-12 Thread Tim Cuthbertson
On Sat, Aug 13, 2011 at 10:26 AM, Jasper St. Pierre wrote: > On Fri, Aug 12, 2011 at 8:22 PM, Tim Cuthbertson wrote: >> On Sat, Aug 13, 2011 at 4:53 AM, John Stowers >> wrote: >>> >>>> I announced it here when I released the first version, but nobody >

Re: Tiling progress

2011-08-12 Thread Tim Cuthbertson
On Sat, Aug 13, 2011 at 4:53 AM, John Stowers wrote: > >> I announced it here when I released the first version, but nobody >> replied so I don't really know how other efforts are faring or how >> much interest there still is. > > I tried and liked it, but could not really be bothered to deal with

Re: Tiling progress

2011-08-12 Thread Tim Cuthbertson
On Fri, Aug 12, 2011 at 4:53 PM, Charles P. Collins IV wrote: > I know that there are a few people working on the tiling features of > gnome-shell, is there a central location where progress and features are > being tracked and discussed? > > Cheers, > Charles >From what I've seen, there are a bu

Re: alt key feature request

2011-08-10 Thread Tim Cuthbertson
On Wed, Jul 27, 2011 at 6:00 AM, philip ballinger wrote: > i have been looking around in dconf-editor and "region and language" option > screen for a feature that was called "movement key" under gnome 2... - the > description was "to move a window, press and hold this key then grab the > window: A

Re: Suggestion: Close windows via middle click in overview

2011-08-09 Thread Tim Cuthbertson
On Wed, Aug 10, 2011 at 7:41 AM, Nick Glynn wrote: > Surely moving to middle click to close would see more complaints as people > misclick when scrolling to zoom the windows in overlay mode? Agreed, and this is even more common than just human error when you have a low quality mouse. Given that t

Re: Can't resolve custom icons in the panel

2011-08-04 Thread Tim Cuthbertson
On Wed, Aug 3, 2011 at 10:20 PM, Florian Müllner wrote: > 2011/8/3 Tim Cuthbertson >> >> While I'm at it, I'm currently setting the icon height to 20px. How >> should I do it properly, so that it'll be correct if the panel height >> changes? Should I jus

Re: Can't resolve custom icons in the panel

2011-08-03 Thread Tim Cuthbertson
On Wed, Aug 3, 2011 at 8:58 PM, Tim Cuthbertson wrote: > On Wed, Aug 3, 2011 at 6:35 PM, Jasper St. Pierre > wrote: >> On Wed, Aug 3, 2011 at 4:27 AM, Tim Cuthbertson wrote: >>> I'm still trying to get custom icons to appear in my extension's panel >>

Re: Can't resolve custom icons in the panel

2011-08-03 Thread Tim Cuthbertson
On Wed, Aug 3, 2011 at 6:35 PM, Jasper St. Pierre wrote: > On Wed, Aug 3, 2011 at 4:27 AM, Tim Cuthbertson wrote: >> I'm still trying to get custom icons to appear in my extension's panel >> indicator. I've done the following: >> >>  - added my icon

Can't resolve custom icons in the panel

2011-08-03 Thread Tim Cuthbertson
I'm still trying to get custom icons to appear in my extension's panel indicator. I've done the following: - added my icon to $XDG_DATA_DIRS/hicolor/48x48/actions/window-tile-horizontal.png - created an StIcon, and added it to my indicator's panel actor If I use icon.set_name("go-down"), the do

Best way for extensions to include external JS files

2011-07-08 Thread Tim Cuthbertson
I want to bundle log4javascript with my gnome-shell extension. I obviously don't want to copy & paste it into my extension.js, so I'm wondering what the best way to bundle it with my extension is. In my current development version, I'm just including it in extensions/myextension/lib/ and adding th

Re: Arrow key window selector extension.

2011-07-04 Thread Tim Cuthbertson
On Mon, Jul 4, 2011 at 3:07 AM, privacy wrote: > > Hello, > > I have written an extension for selecting windows in overview mode with > arrow keys. When you are in overview mode and press an arrow key, the most > recently focused window will be selected and highlighted. As soon as you > have navig

Re: alt-` no longer working?

2011-07-04 Thread Tim Cuthbertson
2011/7/4 Rui Tiago Cação Matos : > On 4 July 2011 12:00, Tim Cuthbertson wrote: >> Not sure if this is just me, but lately the alt-` (key above tab) is >> not working any more. >> >> I have been patching mutter and messing with keybindings lately also, >> so I jus

alt-` no longer working?

2011-07-04 Thread Tim Cuthbertson
Not sure if this is just me, but lately the alt-` (key above tab) is not working any more. I have been patching mutter and messing with keybindings lately also, so I just wanted to check whether I'm the only one seeing this before I bother to report a bug. (fedor 15, g-s version 3.0.2) Cheers, -

Re: GJS: Logging for extensions?

2011-07-03 Thread Tim Cuthbertson
On Sun, Jul 3, 2011 at 5:17 PM, Jasper St. Pierre wrote: > On Sun, Jul 3, 2011 at 2:25 AM, Tim Cuthbertson wrote: >> Hi all, >> >> Since I'm working on a reasonably complex shell extension >> (http://gfxmonk.net/shellshape/), I am wondering if there's a dece

GJS: Logging for extensions?

2011-07-02 Thread Tim Cuthbertson
Hi all, Since I'm working on a reasonably complex shell extension (http://gfxmonk.net/shellshape/), I am wondering if there's a decent logging system for gjs or gnome-shell. Right now I'm using global.log(), but this is a bit rubbish since it's really verbose, and I end up leaving my log comments

Re: On dynamic text expansion in message tray when an icon is hovered

2011-06-26 Thread Tim Cuthbertson
On Fri, Jun 24, 2011 at 11:40 PM, Nguyen Thai Ngoc Duy wrote: > Does anybody else find it difficult to click on an icon in message > tray? If I just move my pointer a little bit further to next icon on > the right of the icon I want to select, the icon will be moved and it > takes more time to mov

shellshape: tiling window manager extension

2011-06-26 Thread Tim Cuthbertson
I believe there were a few people interested in tiling features on this list in the past. I've finally got a releaseable version of my shell extension to enable tiling window manager features inspired by the bluetile variant of xmonad. http://gfxmonk.net/shellshape/ Github repo and demo video are

Re: Extensions Infrastructure Work

2011-06-23 Thread Tim Cuthbertson
>> As you do not have stuff like ActiveX, you need something to retrieve >> the info. Having something with local storage means it has to already be >> known by the browser. So you'll have to change the local storage of all >> possible browsers... > > There are very good reasons why this type of th

Re: How to make window / workspace management easier

2011-06-23 Thread Tim Cuthbertson
On Thu, Jun 23, 2011 at 9:25 PM, David Prieto wrote: > Hi, > > I've been following this list for some time and on the most common > complaints is that sending a window to another workspace is complex and time > consuming when you're using your mouse, because you have to open the > Overview prior t

Re: can't build gnome-shell: missing meta-plugin.h

2011-06-23 Thread Tim Cuthbertson
$ git clean -fdx > > in the mutter and shell dirs, and then do: > > $ jhbuild buildone -afn mutter gnome-shell > > On Thu, Jun 23, 2011 at 7:27 AM, Tim Cuthbertson wrote: >> It's been a while since I had build issues, can anyone tell what might >> be going on? >&g

can't build gnome-shell: missing meta-plugin.h

2011-06-23 Thread Tim Cuthbertson
It's been a while since I had build issues, can anyone tell what might be going on? I'm trying to build *just* the shell, I believe I have all the build dependencies installed so as not to need jhbuild (I did not have good experiences with building from the jhbuild edge). When I do a make in gnom

Re: window minimised and unminimised signals

2011-06-22 Thread Tim Cuthbertson
On Wed, Jun 22, 2011 at 9:24 PM, Florian Müllner wrote: > On Wed, 2011-06-22 at 21:21 +1000, Tim Cuthbertson wrote: >> Are there any signals for these events in gnome-shell? >> >> Right now I've managed to infer these events when the window's actor >> &

window minimised and unminimised signals

2011-06-22 Thread Tim Cuthbertson
Are there any signals for these events in gnome-shell? Right now I've managed to infer these events when the window's actor 'size-changed' signal fires, using the following logic: - if the window's `minimised` property is now true, assume the window has just been minimised, - if the current valu

Re: Extensions Infrastructure Work

2011-06-21 Thread Tim Cuthbertson
On Wed, Jun 22, 2011 at 12:24 PM, Jasper St. Pierre wrote: > On Tue, Jun 21, 2011 at 10:08 PM, Tim Cuthbertson wrote: >> On Wed, Jun 22, 2011 at 11:01 AM, Jasper St. Pierre >> wrote: >>>> Sorry if I'm late to the party with this suggestion. >>> >&g

Re: Extensions Infrastructure Work

2011-06-21 Thread Tim Cuthbertson
On Wed, Jun 22, 2011 at 11:01 AM, Jasper St. Pierre wrote: >> Sorry if I'm late to the party with this suggestion. > > I'd rather late than never. I don't want to break this if people are > unhappy with what I've come up with. > >> but I think this >> is where using zero install[0] for extensions

Re: Extensions Infrastructure Work

2011-06-21 Thread Tim Cuthbertson
On Wed, Jun 22, 2011 at 5:59 AM, Jasper St. Pierre wrote: > On Tue, Jun 21, 2011 at 7:40 AM, Jasper St. Pierre > wrote: >> On Tue, Jun 21, 2011 at 6:54 AM, ecyrbe wrote: >>> Thank you for the hard work you are providing. juste some first questions. >>> >>> 2011/6/21 Jasper St. Pierre

Re: Connect to window resize / move signal

2011-06-19 Thread Tim Cuthbertson
On Sun, Jun 19, 2011 at 7:30 PM, Jasper St. Pierre wrote: > On Sun, Jun 19, 2011 at 5:05 AM, Tim Cuthbertson wrote: >> On Sun, Jun 19, 2011 at 6:56 PM, Florian Müllner wrote: >>> On Sun, 2011-06-19 at 15:50 +1000, Tim Cuthbertson wrote: >>>> MetaWindow.actor (th

Re: Connect to window resize / move signal

2011-06-19 Thread Tim Cuthbertson
On Sun, Jun 19, 2011 at 6:56 PM, Florian Müllner wrote: > On Sun, 2011-06-19 at 15:50 +1000, Tim Cuthbertson wrote: >> MetaWindow.actor (the obvious guess) doesn't exist, and I can't find >> any methods in Meta.gir that return a WindowActor. > > Yeah, it's pr

Connect to window resize / move signal

2011-06-18 Thread Tim Cuthbertson
In Meta.gir I can see that WindowActor has some useful signals to tell when a user has resized or moved a window (namely size-changed and position-changed). I would like to connect these signals, but I can't find a way to access the window's actor. MetaWindow.actor (the obvious guess) doesn't exist

Wide icons in the panel

2011-06-18 Thread Tim Cuthbertson
I've added an indicator to the panel for my tiling window extension, and want to have custom icons to represent different states of the workspace (i.e different layouts). I'd like to have wide icons, as it gives you a bigger hit target and is easier to distinguish the layouts visually that way. Is

emitting signals from a JS object

2011-06-14 Thread Tim Cuthbertson
So it seems that all GObjects have an `emit` method for signals. I have need in my extension for one javascript object to be notified of an event happening in another object. Both of these are plain old javascript objects. What do I need to call / inherit from in order to emit and connect to signa

Re: moving windows from an extension (also: mutter debug output)

2011-06-04 Thread Tim Cuthbertson
On Sat, Jun 4, 2011 at 3:54 PM, Jasper St. Pierre wrote: > > > On Sat, Jun 4, 2011 at 1:33 AM, Tim Cuthbertson wrote: >> >> I'm writing a tiling window manager extension >> (https://github.com/gfxmonk/shellshape), which obviously involves my >> extension be

moving windows from an extension (also: mutter debug output)

2011-06-03 Thread Tim Cuthbertson
I'm writing a tiling window manager extension (https://github.com/gfxmonk/shellshape), which obviously involves my extension being responsible for placing / resizing windows and telling mutter about the new positions. I'm using what seem like the obvious methods to do so: - MetaWindow.resize(true

getting rid of the "Oh no!" window when restarting gnome-shell

2011-06-03 Thread Tim Cuthbertson
In hacking on gnome-shell, I often break things and have to restart the shell (or crash it). It seems that gnome-session notices this, as after gnome-shell exits a few times (because I broke or restarted it), gnome-session pops up a fullscreen X window saying something along the lines of "Oh no, s

Re: using gsettings / gconf in extensions

2011-05-30 Thread Tim Cuthbertson
On Fri, May 27, 2011 at 5:21 AM, Giovanni Campagna wrote: > Il giorno gio, 26/05/2011 alle 10.38 -0700, Adam Williamson ha scritto: >> On Thu, 2011-05-26 at 17:50 +0200, Giovanni Campagna wrote: >> >> > Why not installing system-wide? It's just a matter of "pkcon install >> >> What if you have oth

Re: using gsettings / gconf in extensions

2011-05-26 Thread Tim Cuthbertson
On Wed, May 25, 2011 at 11:55 PM, Giovanni Campagna wrote: > Il giorno mer, 25/05/2011 alle 22.14 +1000, Tim Cuthbertson ha scritto: >> Hi all, >> >> I'm planning to add some gsettings or gconf integration to Erick >> Pérez's workspace indicator extension &

Re: The good, the bad, the insane

2011-05-26 Thread Tim Cuthbertson
On Thu, May 26, 2011 at 10:22 AM, Robert Park wrote: > On Mon, May 23, 2011 at 10:06 AM, Jesse Hutton wrote: >> And, the "preferred" way of powering down by logging out and doing it in GDM >> is surely not optimal given that most machines are single user systems. A >> laptop is practically by def

using gsettings / gconf in extensions

2011-05-25 Thread Tim Cuthbertson
Hi all, I'm planning to add some gsettings or gconf integration to Erick Pérez's workspace indicator extension (https://github.com/erick2red/shell-extensions) to allow the user to configure the label text format. So I have a couple of questions: - Is gsettings or gconf preferred for extension cod

Re: List / Support [Was: We want task bar back. Pretty please.]

2011-05-22 Thread Tim Cuthbertson
On Mon, May 23, 2011 at 5:25 AM, Adam Tauno Williams wrote: > On Sun, 2011-05-22 at 15:18 -0400, jordan wrote: >> thanks Evandro, >> 1. "WOW! ~ that is not a good sign." >> - This is me saying that i am surprised that more gnome-developers >> don't follow the list. - nothing more... :) > > Why? Th

Re: Persistant Activities Menu

2011-05-21 Thread Tim Cuthbertson
On Sat, May 21, 2011 at 9:58 PM, Olav Vitters wrote: > On Sat, May 21, 2011 at 05:55:25PM +1000, Tim Cuthbertson wrote: >> Using the windows key for this might be hard. I've submitted a patch >> to enable this behaviour when you hold down shift (like in a browser, >> whe

Re: Persistant Activities Menu

2011-05-21 Thread Tim Cuthbertson
On Tue, May 17, 2011 at 4:12 AM, Christopher Baines wrote: > Initially after starting my computer, I usually want to start a few > applications, so I start Firefox, then the activities menu closes, then > I open it and start Evolution, then the activities menu closes, then I > open it and start Li

Re: Using the super/windows key for keybindings

2011-05-17 Thread Tim Cuthbertson
On Tue, May 17, 2011 at 3:59 PM, Koppányi Tamás wrote: > i am guessing these basic hotkeys are hardcoded in the interface, like Alt+' > also, which in my case is Alt+0, since i am using a hungarian keyboard, but > it works nevertheless, unlike these Ctrl+Y and other keybindings of brosers > for ex

Using the super/windows key for keybindings

2011-05-14 Thread Tim Cuthbertson
I'm currently writing an extension (for tiling windows) that I want to add a lot of global keybindings for. There are two problems with this: Firstly, it may be hard to get my work merged since I'm pretty sure the only way it can currently be done is by adding to mutter's all-keybindings.h, and th

runtime error(s) - FIXME: Only supporting zero-terminated ARRAYs

2011-04-05 Thread Tim Cuthbertson
This is what I get when I run gnome-shell as of today. I'm not sure what's a warning and what's an error (they all look pretty bad), any ideas what's wrong and what I should do to get it running? Gtk-Message: Failed to load module "pk-gtk-module" EE r600_pipe.c:321 r600_get_param - r600: unknown

Re: can't build gtk3: undefined reference to `gdk_x11_window_set_theme_variant'

2011-04-04 Thread Tim Cuthbertson
On Mon, Apr 4, 2011 at 8:50 PM, Tim Cuthbertson wrote: >> I had a similar error today when trying to build an older GTK3 than the >> one I had (git master). And I've no .la files left. Anyway, it seems >> there's been a change in symbols that libtool doesn't l

Re: can't build gtk3: undefined reference to `gdk_x11_window_set_theme_variant'

2011-04-04 Thread Tim Cuthbertson
> I had a similar error today when trying to build an older GTK3 than the > one I had (git master). And I've no .la files left. Anyway, it seems > there's been a change in symbols that libtool doesn't like. > > I'd suggest you remove ~/gnome-shell/install entirely, also remove > ~/gnome-shell/sourc

can't build gtk3: undefined reference to `gdk_x11_window_set_theme_variant'

2011-04-03 Thread Tim Cuthbertson
./.libs/libgtk-3.so: undefined reference to `gdk_x11_window_set_theme_variant' collect2: ld returned 1 exit status linking of temporary binary failed: Command '['/bin/bash', '../libtool', '--mode=link', '--tag=CC', '--silent', 'gcc', '-o', '/home/tim/gnome-shell/source/gtk3/gtk/tmp-introspect8PS6yu

Re: GLib-GIO-ERROR **: Settings schema 'org.gnome.desktop.interface' is not installed

2011-03-19 Thread Tim Cuthbertson
On Sat, Mar 19, 2011 at 11:18 PM, Giovanni Campagna wrote: > Il giorno sab, 19/03/2011 alle 13.02 +1100, Tim Cuthbertson ha scritto: >> This error happens on startup of gnome-shell, followed by "aborting." >> >> I tried a >> jhbuild build -afc gsettings-des

GLib-GIO-ERROR **: Settings schema 'org.gnome.desktop.interface' is not installed

2011-03-18 Thread Tim Cuthbertson
This error happens on startup of gnome-shell, followed by "aborting." I tried a jhbuild build -afc gsettings-desktop-schemas followed by a jhbuild build with the same results. Any ideas? ___ gnome-shell-list mailing list gnome-shell-list@gnome.org http:

Re: cannot find libmutter while building gnome-shell module

2011-03-18 Thread Tim Cuthbertson
nces are it's a mutter ABI break. > > On Fri, Mar 18, 2011 at 11:45 AM, Robert Park wrote: >> On Fri, Mar 18, 2011 at 7:19 AM, Tim Cuthbertson wrote: >>> $ jhbuild buildone gnome-shell >>> configure: error: Package requirements (gio-2.0 >= 2.25.9

cannot find libmutter while building gnome-shell module

2011-03-18 Thread Tim Cuthbertson
I have done a "jhbuild"; everything else seems to be up to date (and I specifically did a build on mutter, just in case). I presume libmutter is supposed to be built by the mutter module inside ~/gnome-shell/source/mutter/? - $ jhbuild buildone gnome-shell configure: error: Package requiremen

Re: Tiling features in Mutter

2011-03-17 Thread Tim Cuthbertson
On Fri, Mar 18, 2011 at 8:04 AM, Tim Cuthbertson wrote: > I'm not seeing owen's side of this conversation (specifically this > first quoted part, I never received. this is also the first message > I've seen discussing static typing vs dynamic typing). is it supposed > t

Re: Tiling features in Mutter

2011-03-17 Thread Tim Cuthbertson
I'm not seeing owen's side of this conversation (specifically this first quoted part, I never received. this is also the first message I've seen discussing static typing vs dynamic typing). is it supposed to be between the two of you or on the mailing list? On Fri, Mar 18, 2011 at 4:07 AM, Oliver

Re: Tiling features in Mutter

2011-03-15 Thread Tim Cuthbertson
On Tue, Mar 15, 2011 at 9:41 PM, Olav Vitters wrote: > On Tue, Mar 15, 2011 at 01:11:55PM +1100, Tim Cuthbertson wrote: >> I've started to work on these features in gnome-shell itself (using >> javascript). but haven't had much time for it. I'm not convinced doing

Re: Tiling features in Mutter

2011-03-14 Thread Tim Cuthbertson
I'm definitely interested, and I think there are at least a few more who would also be interested based on past posts. I made a post in feb to this list: http://mail.gnome.org/archives/gnome-shell-list/2011-February/msg00062.html

Re: Shelf workspace: an alternative way of hiding windows?

2011-02-27 Thread Tim Cuthbertson
On Fri, Feb 25, 2011 at 6:24 AM, coulamac wrote: > Perhaps an alternative way to hide windows is to have a dedicated "shelf" > workspace for windows to be placed for later use.  Rather than a minimize > button, there could be a little shelf icon button on the window's title bar. > >

Re: gnome-shell-extensions required directories (m4 and configure)

2011-02-20 Thread Tim Cuthbertson
On Sun, Feb 20, 2011 at 12:48 AM, Giovanni Campagna wrote: > Il giorno sab, 19/02/2011 alle 15.45 +1100, Tim Cuthbertson ha scritto: >> I was just doing a jhbuild build, and it failed when it got to gnome-shell: >> >> >> configuring gnome-shell *** [31/34] >> ./au

gnome-shell-extensions required directories (m4 and configure)

2011-02-18 Thread Tim Cuthbertson
I was just doing a jhbuild build, and it failed when it got to gnome-shell: configuring gnome-shell *** [31/34] ./autogen.sh --prefix /home/tim/gnome-shell/install --libdir '/home/tim/gnome-shell/install/lib64' --disable-static --disable-gtk-doc /usr/bin/gnome-autogen.sh checking for autoconf >=

Can you resize a window from javascript-land?

2011-02-13 Thread Tim Cuthbertson
Is it possible to resize a window from gnome-shell javascript code? I believe I hold onto an object of type "MetaWindow", and I've looked through the Shell.gir and Meta.gir, but found no relevant methods to call. The C type seems to have a check_resize function that sounds useful, but I don't see

Tiling window manager plugin(?) for gnome-shell

2011-02-05 Thread Tim Cuthbertson
existing one If you know of similar efforts, or tutoriales / articles that might help me get started, could you please mention them here? I've googled, but couldn't find much info aside from discussion of the aero-snap-like features already in the shell. Thanks for any guidance yo