Re: focus window after minimize

2011-09-24 Thread Ryan T. Sawyer
> tyring awesome again. Would you let me know how i can focus/or unminimize > after minimize a window. > I needed to redraw or click application to do that. Hope you understand the > question. Dear Ekram, Here is a workaround that someone made (either on this list or a forum somewher

Re: focus window after minimize

2011-09-24 Thread Ekram
Dear Ryan, Perfectly worked. Thanks a lot for showing me. /Ekram On Sat, Sep 24, 2011 at 2:03 PM, Ryan T. Sawyer wrote: > > tyring awesome again. Would you let me know how i can focus/or unminimize > > after minimize a window. > > I needed to redraw or click application to

Re: focus window after minimize

2011-09-24 Thread Vivian Brégier
You can also access the minimized windows by the window list. I have it mapped on modkey+Tab; I don't remember if this is the default, though. 2011/9/24 Ryan T. Sawyer : >> tyring awesome again. Would you let me know how i can focus/or unminimize >> after minimize a window. >

focus window after minimize

2011-09-23 Thread Ekram
Hi, tyring awesome again. Would you let me know how i can focus/or unminimize after minimize a window. I needed to redraw or click application to do that. Hope you understand the question. /Ekram

Re: Restore a minimized client

2010-08-27 Thread Vitor Eiji Justus Sakaguti
Hey Renato, 2010/8/26 Renato Botelho : > I have this on my rc.lua: > >    -- unminimize windows >    awful.key({ modkey, "Shift"   }, "n", >        function () >            local allclients = client.get(mouse.screen) > >            for _,c in ipairs(al

Re: maximize window..

2010-10-28 Thread Vitor Eiji Justus Sakaguti
Hi, On Thu, Oct 28, 2010 at 6:33 AM, Ekram wrote: > Could you know how to maximize window after Mod+N? > Please in know how the Mod+M but after Mod+n i cannot maximize unless i > click it from  title.. Try this in your globalkeys: -- Unminimize clients awful.key({ modke

Re: Restore a minimized client

2010-08-26 Thread Renato Botelho
On Mon, Aug 23, 2010 at 3:45 PM, Tomás Solar Castro wrote: > > Hey guys o/ > > How can I restore a mod4+n minimized client? The only way I can get the > client visible again is to click on the client in mytasklist[s] > widget... I have this on my rc.lua: -- unminimize win

Re: Restore a minimized client

2010-08-27 Thread Renato Botelho
On Fri, Aug 27, 2010 at 11:14 AM, Vitor Eiji Justus Sakaguti wrote: > Hey Renato, > > 2010/8/26 Renato Botelho : >> I have this on my rc.lua: >> >>    -- unminimize windows >>    awful.key({ modkey, "Shift"   }, "n", >>        function

Re: Raise minimized client

2010-02-23 Thread Renato Botelho
t; not found any. Pls help. I have a code on my rc.lua to do this: -- unminimize windows awful.key({ modkey, "Shift" }, "n", function () local allclients = client.get(mouse.screen) for _,c in ipairs(allclients) do

Re: Can't un-minimize windows

2016-04-22 Thread Elv1313 .
onfig, you can unminimze clients by clicking on them in the tasklist or adding a new shortcut. In your case, given you probably disable the widget bar to use the gnome provided by GNOME, you removed the only way to unminimize clients. Pressing mod4+n twice will not unminimze clients because it act o

Migrating conf from 3.3 to 3.4-rc2

2009-10-07 Thread Renato Botelho
Hello, I'm migrating my rc.lua to 3.4-rc2, almost everything is done, i have just 2 doubts, maybe you can help me. 1. I noted there is a minimize function now, I tested it and it worked fine using Mod4+n, my only question is, how can I unminimize this window just using the keyboard? I d

Minimized Wine clients can't be raised again from the tasklist

2010-04-01 Thread ninian
7;ve found to raise the minimized client: 1) By issuing the command: wmctrl -R 2) By using an 'unminimize' keybinding thus (saw this is another thread): awful.key({ modkey, "Shift" }, "n", function () local allclients = client.get(mouse.sc

Re: Stack-like behavior for restoring minimized windows

2016-06-06 Thread Alexis BRENON @Awesome
Hi Bill, You probably have to do this manually, looking up a table each time you minimize/unminimize a window. This way you can track which window was minimized last and restore it. Kind regards, Alexis Le dim. 5 juin 2016 à 19:57, Vitorio Miguel a écrit : > would be interesting! it would

Re: Migrating conf from 3.3 to 3.4-rc2

2009-10-07 Thread Renato Botelho
> using Mod4+n, my only question is, how can I unminimize this window > just using the keyboard? I did it clicking with mouse on my tasklist. This one i just didn't figure out yet > 2. I had this block of code on my 3.3 rc.lua: > >    -- >    -- Don't draw borders on tiled cl

Re: Minimizing apps

2009-01-23 Thread Alex Cornejo
/rc.lua for an example) table.insert(clientkeys, key({ modkey, "Shift"}, "m", function (c) c.minimize=true end)) To unminimize I suppose giving focus to the client (either via mod-j/k or clicking it on the taskbar) should be enough, however I've never used this so I would

Re: Minimizing apps

2009-01-23 Thread Evan LeCompte
@/etc/xdg/awesome/rc.lua for an example) > > table.insert(clientkeys, key({ modkey, "Shift"}, "m", function (c) > c.minimize=true end)) > > To unminimize I suppose giving focus to the client (either via mod-j/k > or clicking it on the taskbar) should be enough, how

Re: Minimizing apps

2009-01-23 Thread Evan LeCompte
dd the keybinding would be as >> follows: (you should add this in the correct place in your rc.lua >> file, look @/etc/xdg/awesome/rc.lua for an example) >> >> table.insert(clientkeys, key({ modkey, "Shift"}, "m", function (c) >> c.minimize=tr

Re: Can't un-minimize windows

2016-04-23 Thread Markus Gutschke
I am using GNOME in "fall back" mode. It gives me a gnome-panel and I can add a task list to this panel. In the task list, it shows me an entry for all windows; both on-screen and minimized. If I right-click on this entry, I get a pop-up menu that allows me to select "unminimize&qu

Re: Can't un-minimize windows

2016-04-24 Thread Markus Gutschke
extra line at the beginning of this function, unconditionally setting c.minimized = false That change does in fact fix the bug and I can unminimize windows. Very cool! I fixed something :-) Unfortunately, it also unminimizes windows when they shouldn't be (e.g. when reloading the window manage

Re: Can't un-minimize windows

2016-04-23 Thread Elv1313 .
am using GNOME in "fall back" mode. It gives me a gnome-panel and I can > add a task list to this panel. > > In the task list, it shows me an entry for all windows; both on-screen and > minimized. If I right-click on this entry, I get a pop-up menu that allows > me to select &

Re: Some questions from an awesome beginner

2013-10-30 Thread Marshall Mason
ell from your description which layout would be best. Play with them, and see what you like. Awesome does have minimize functionality. The default key binding is Mod4-n to minimize and Mod4-Ctrl-n to unminimize. It's certainly possible to use tags instead of minimizing, but not necessary. Ta

Re: Can't un-minimize windows

2016-04-23 Thread Markus Gutschke
> > add a task list to this panel. > > > > In the task list, it shows me an entry for all windows; both on-screen > and > > minimized. If I right-click on this entry, I get a pop-up menu that > allows > > me to select "unminimize". But if I select that e

[ANNOUNCE] awesome 3.5-rc1 released (was: [ANNOUNCE] awesome 3.4-rc1 released)

2012-11-24 Thread Uli Schlachter
awful.widget.graph: Various minor fixes Simplify the graph drawing code xerror: Print numeric infos about the error Fix various minor errors after the lua 5.2 conversion More fixes for the recent module() removal awful.client: Add a missing module table gears.surfac

RE: [ANNOUNCE] awesome 3.5-rc1 released (was: [ANNOUNCE] awesome 3.4-rc1 released)

2012-11-25 Thread David Sorkovsky
otifications again awful.widget.graph: Various minor fixes Simplify the graph drawing code xerror: Print numeric infos about the error Fix various minor errors after the lua 5.2 conversion More fixes for the recent module() removal awful.client: Add a missing m