Re: Un-minimize Window

2011-01-08 Thread Sanjuro Makabe
On 09.01.2011 03:14, Vitor Eiji Justus Sakaguti wrote: > On Sat, Jan 8, 2011 at 9:31 PM, Sanjuro Makabe wrote: >> >> >> On 08.01.2011 22:46, Mark Testa wrote: >>> This is what I use. I found it on this mailing list. My opinion, it >>> should be included with the default awesome config. >>> >>> >

Re: Un-minimize Window

2011-01-08 Thread Vitor Eiji Justus Sakaguti
On Sat, Jan 8, 2011 at 9:31 PM, Sanjuro Makabe wrote: > > > On 08.01.2011 22:46, Mark Testa wrote: >> This is what I use. I found it on this mailing list. My opinion, it >> should be included with the default awesome config. >> >> >> awful.key(-- restore minimized windows >> {modkey, "Shift"}, "n"

Re: Un-minimize Window

2011-01-08 Thread Sanjuro Makabe
On 08.01.2011 22:31, Uli Schlachter wrote: > Am 08.01.2011 22:21, Sanjuro Makabe wrote: > [...] >> It seems to me that although the >> minimized client is focused (as shown by the tasklist) every new modkey >> + n press goes directly to another client. > > Uhm, you shouldn't be able to focus a m

Re: Un-minimize Window

2011-01-08 Thread Tomás Solar Castro
<#secure method=pgpmime mode=sign> Mark Testa writes: > This is what I use. I found it on this mailing list. My opinion, it should be > included with the default awesome > config. +1 -- Tomás Solar Castro Be Free! http://FSFLA.org GNU+Linux Registered User #383588 Public PGP Key: FB7590D2 (hk

Re: Un-minimize Window

2011-01-08 Thread Sanjuro Makabe
On 08.01.2011 22:46, Mark Testa wrote: > This is what I use. I found it on this mailing list. My opinion, it > should be included with the default awesome config. > > > awful.key(-- restore minimized windows > {modkey, "Shift"}, "n", > function () > local allclients = client.get(mouse.screen) >

Evince refreshes, chaos ensues.

2011-01-08 Thread Michaël Cadilhac
Hi there people who are using awesome, I searched the ML and wiki with no luck for the following trouble with Evince. Recipe: - Have Awesome in its default configuration - Launch a shell in a maximized tag (not magnifier, just the regular maximized) - $ echo 'hello' | a2ps - -o a.ps && evince a.p

Re: Floating, on top

2011-01-08 Thread Adrian C.
On Sat, 8 Jan 2011, Blacklemon67 wrote: > is it possible to make all floating windows stay on top? With awful > rules or something else? Yes. One solution, starting on line 550: http://git.sysphere.org/awesome-configs/tree/rc.lua#n550 -- Adrian C. (anrxc) | anrxc..sysphere.org | PGP ID: D20A0

Floating, on top

2011-01-08 Thread Blacklemon67
is it possible to make all floating windows stay on top? With awful rules or something else? -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: mouse foxus and master size

2011-01-08 Thread Adrian C.
On Sat, 8 Jan 2011, Marc Petit-Huguenin wrote: > - I would like that the window under the mouse always have the focus > when switching between tags. At the top of your rc.lua you are requiring awful.autofocus. Among other things it makes sure to give the focus to a client that last had it on

Re: Behavior on existence of Window

2011-01-08 Thread Adrian C.
Other people played with this before. The so called "run or raise" check the wiki page: https://awesome.naquadah.org/wiki/Run_or_raise The code may be outdated, but the ideas are not. -- Adrian C. (anrxc) | anrxc..sysphere.org | PGP ID: D20A0618 PGP FP: 02A5 628A D8EE 2A93 996E 929F D5CB 31B7

Re: new to awesome, simple question

2011-01-08 Thread Adrian C.
On Sat, 8 Jan 2011, Kovács Attila wrote: > I recently tried awesome WM, but something I can't understand about > its tiling feature. Sometimes a new terminal or browser is spawned, it > just stays in floating mode (and a little butterfly symbol appears.) > It works good on any else clients thou

Re: Un-minimize Window

2011-01-08 Thread Mark Testa
This is what I use. I found it on this mailing list. My opinion, it should be included with the default awesome config. awful.key( -- restore minimized windows {modkey, "Shift"}, "n", function () local allclients = client.get(mouse.screen) for _,c in ipairs(allclients) do if c.minimized and c:ta

Re: Un-minimize Window

2011-01-08 Thread Uli Schlachter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Am 08.01.2011 22:21, Sanjuro Makabe wrote: [...] > It seems to me that although the > minimized client is focused (as shown by the tasklist) every new modkey > + n press goes directly to another client. Uhm, you shouldn't be able to focus a minimize

Un-minimize Window

2011-01-08 Thread Sanjuro Makabe
Hi, this is something I just don't understand about awesome. In the default config there is a key combo for minimizing windows (clients). It's modkey + n appearently. This works for me. What does not work though is un-minimizing the client again. It seems to me that although the minimized client i

Re: mouse foxus and master size

2011-01-08 Thread Yury Bulka
On Sun, 9 Jan 2011 02:22:44 +0530 Anurag Priyam wrote: > > - I mostly always use the tile layout, but I would like to have a > > bigger master part at startup (as if awful.tag.incmwfact(0.05) was > > called 6 times). > > You need to set the mwfact property for that tag: > > awful.tag.setpropert

Re: mouse foxus and master size

2011-01-08 Thread Anurag Priyam
> - I would like that the window under the mouse always have the focus when > switching between tags. Not sure what you mean by "when switching between tags". > - I mostly always use the tile layout, but I would like to have a bigger > master > part at startup (as if awful.tag.incmwfact(0.05) wa

mouse foxus and master size

2011-01-08 Thread Marc Petit-Huguenin
Hi, I was waiting to see if someone had the same problems than me - I unfortunately do not have enough knowledge of Awesome to fix it for myself, so if someone already has some code, it will be greatly appreciated: - I would like that the window under the mouse always have the focus when switchin

Re: Behavior on existence of Window

2011-01-08 Thread Gregor Best
On Sat, Jan 08, 2011 at 02:51:04AM -0800, beo wulf wrote: > I want a function to do the following: > > If there is a client that matches 'name="Grendel"' then I want that > client to gain focus. > If there is no such client that matches 'name="Grendel"' then I want > "start-monster" to be execute

Behavior on existence of Window

2011-01-08 Thread beo wulf
I want a function to do the following: If there is a client that matches 'name="Grendel"' then I want that client to gain focus. If there is no such client that matches 'name="Grendel"' then I want "start-monster" to be executed. Now, I know how to send focus to a client, and I know how to spawn

Re: Problems with java application (not the grey window issue though ;))

2011-01-08 Thread Torsten Andre
Am 07.01.2011 16:37, schrieb Uli Schlachter: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Am 06.01.2011 10:47, Torsten Andre wrote: Hey, I'm sorry, but I'm really frustrated. I just bought thinkingrock and was excited to fire it up and then I got really frustrated. This could really become

new to awesome, simple question

2011-01-08 Thread Kovács Attila
Hi, I recently tried awesome WM, but something I can't understand about its tiling feature. Sometimes a new terminal or browser is spawned, it just stays in floating mode (and a little butterfly symbol appears.) It works good on any else clients though. Here is my rc.lua, a very basic one. http: