Re: Focus Issue

2012-03-20 Thread Can Altıparmak
? Thanks, Michael -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org. -- Can Altıparmak -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: Focus Issue

2012-03-20 Thread Can Altıparmak
Sorry Gmail wrapped my long comment, correct code: awful.client.focus.byidx = function (i, c) local target = awful.client.next(i, c) if target then client.focus = target end return target end 2012/3/20 Can Altıparmak can6par...@gmail.com: Hello Michael, I am not using

Re: Focus Issue

2012-03-22 Thread Can Altıparmak
: http://paste.pocoo.org/show/569489/ I guess both using globally active model and yes it might be the same problem. On awesome 3.4.11 with java version 1.7.0 On 22 March 2012 11:29, Uli Schlachter psyc...@znc.in wrote: On 20.03.2012 21:47, Can Altıparmak wrote: Hello Michael, I am not using

Re: Understanding basics of writing rc.lua

2012-04-11 Thread Can Altıparmak
. Thanks in advance. -- Regards, Abhijeet Rastogi (shadyabhi) https://plus.google.com/107316377741966576356/ -- Can Altıparmak -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: Understanding basics of writing rc.lua

2012-04-11 Thread Can Altıparmak
/tasklist.lua tasklist_update, shownclients passed as objects to list_update. So o is a client object. I also don't know much about awesome codebase. I tried to relate connected signal to emitted for tasklist and it is a little bit cumbersome, but hopefully helped. -- Can Altıparmak

Re: Cups/Num Lock change event

2012-04-14 Thread Can Altıparmak
to clientkeys (requires an active client to work by the way), instead of globalkeys, does it work without layout change. -- Can Altıparmak -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: Un-minimizing a window won't work iff in alternative keyboard layout

2012-04-23 Thread Can Altıparmak
, filed a few weeks ago? https://awesome.naquadah.org/bugs/index.php?do=detailstask_id=982#comment2950 From comments: ... occurs after updating xorg-xkbcomp 1.2.3-1.2.4 It seems downgrading `xorg-xkbcomp` solves this issue. -- Can Altıparmak -- To unsubscribe, send mail to awesome-unsubscr

Re: Lua Question

2012-04-28 Thread Can Altıparmak
in the screen, if you mean 1 client on the active tag(s) in the screen, then you should calculate clientcount as: local clientcount=0 for _,t in ipairs(awful.tag.selectedlist()) do clientcount = clientcount + #t:clients() end -- Can Altıparmak -- To unsubscribe, send mail to awesome

Re: newbie question about lua, tagging and getting it do to what I want

2012-05-03 Thread Can Altıparmak
({ modkey, }, Right, function() repeat awful.tag.viewnext() until next(awful.tag.selected(mouse.screen):clients()) end ), -- Can Altıparmak -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: [awesome] How to restore minimized windows with keyboard?

2012-06-04 Thread Can Altıparmak
I can't iterate through minimized windows with Mod4+k and Mod4+l keybinds.. Is there any option to achieve this??? git/master has an awful.client.iterate function. Its filter argument, lets you iterate through desired clients. Though it is one-way, there is no reverse-iterate. -- Can

Re: Maximize GNOME Terminator on startup?

2012-06-06 Thread Can Altıparmak
I wonder, does awesome just drop these maximize() calls because it hasn't layed out the window yet? `terminator -m` starts maximized here. (awesome git/master, terminator 0.96) Maybe a problem with 3.4.* -- Can Altıparmak -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.