Gregor Best | 21 May 2013 19:26
Picon
Gravatar

Patches for the 2.3 branch

As threatened on IRC, here's a bunch of patches to 2.3. I didn't yet get
around to adding a systray widget, but that will come.

Most of the patches are fairly self explanatory, I guess, but as
always, suggestions and questions are welcome :)

-- 
    Gregor Best
From 11bcb2ff9637cf10231b037c2383e40d8751b89d Mon Sep 17 00:00:00 2001
From: Gregor Best <gbe <at> ring0.de>
Date: Tue, 21 May 2013 19:12:55 +0200
Subject: [PATCH 1/6] Add client_seturgent and a bit more ICCCM compatibility

Stolen straight from 3.4

Signed-off-by: Gregor Best <gbe <at> ring0.de>
---
 client.c | 18 ++++++++++++++++++
 client.h |  1 +
 2 files changed, 19 insertions(+)

diff --git a/client.c b/client.c
index 527466b..67fcece 100644
--- a/client.c
+++ b/client.c
 <at>  <at>  -177,6 +177,22  <at>  <at>  client_ban(Client *c)
         XUnmapWindow(globalconf.display, c->titlebar.sw->window);
 }
(Continue reading)

awesome | 21 May 2013 09:01
Gravatar

[awesome bugs] #764 - Maximized window state becomes confused when moved between screens

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#764 - Maximized window state becomes confused when moved between screens
User who did this - Lauri Niskanen (Ape)

----------
I also have this issue with 3.5.1.
----------

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=764#comment3588

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

awesome | 20 May 2013 20:29
Gravatar

[awesome bugs] #1141 - Really bad display corruption when using EFI xorg driver (fbdev)

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1141 - Really bad display corruption when using EFI xorg driver (fbdev)
User who did this - Colin Pitrat (lifo2)

----------
I confirm I have the same problem.
I have a Poulsbo video card. Using gma500 and fbdev Xorg driver (the only way to have native 1366x768
resolution) the screen doesn't refresh properly.
It concerns both content of windows and awesome widgets.

----------

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1141#comment3587

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

awesome | 18 May 2013 15:54
Gravatar

[awesome bugs] #1149 - Support focus per "tag" (or 'screen')

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task is now closed:

FS#1149 - Support focus per "tag" (or 'screen')
User who did this - Uli Schlachter (psychon)

Reason for closing: Works for me
More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1149

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

awesome | 18 May 2013 14:50
Gravatar

[awesome bugs] #1149 - Support focus per "tag" (or 'screen')

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1149 - Support focus per "tag" (or 'screen')
User who did this - Tomas Pruzina (Mepho)

----------
Wohoa, lovely, exactly what I wanted.
Love.

TP
----------

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1149#comment3586

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

awesome | 17 May 2013 18:00
Gravatar

[awesome bugs] #1149 - Support focus per "tag" (or 'screen')

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1149 - Support focus per "tag" (or 'screen')
User who did this - Uli Schlachter (psychon)

----------
Uhm. Do I understand this correctly:

You want the focus to follow the mouse (sloppy focus), except when the mouse switches between screens. In
this case you don't want the input focus to follow the mouse?

If this is correct, go to your rc.lua and inside the "manage" hook, change the following:

    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
        if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
            and awful.client.focus.filter(c) then
            client.focus = c
        end
    end)

into:

    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
        if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
            and awful.client.focus.filter(c) and (client.focus == nil or client.focus.screen == mouse.screen) then
            client.focus = c
(Continue reading)

awesome | 17 May 2013 17:25
Gravatar

[awesome bugs] #1149 - Support focus per "tag" (or 'screen')

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

A new Flyspray task has been opened.  Details are below. 

User who did this - Tomas Pruzina (Mepho) 

Attached to Project - awesome
Summary - Support focus per "tag" (or 'screen')
Task Type - Feature Request
Category - Core
Status - Unconfirmed
Assigned To - 
Operating System - All
Severity - Medium
Priority - Normal
Reported Version - git/master
Due in Version - Undecided
Due Date - Undecided
Details - Hi,

could awesome support focus 'per screen'?
I'm having multiple monitors (3) and one annoying thing I noticed is that when I move mouse over screens,
old client loses focus which breaks for example fullscreen flash or my libnotify notifications.
Is this 'fixable' withing awesome? or is this stuff managed by xlib/xcb?

Could anyone point me towards solution to this? Thanks in advance.

Tomas Pruzina 

More information can be found at the following URL:
(Continue reading)

awesome | 13 May 2013 19:39
Gravatar

[awesome bugs] #1148 - tooltip_bg_color always set to normal bg (can't change tooltip bg_color)

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1148 - tooltip_bg_color always set to normal bg (can't change tooltip bg_color)
User who did this - ayman (mony)

----------
ended with
- self.wibox.bg = beautiful.tooltip_bg_color or beautiful.bg_focus or "#ffcb60"
+ self.wibox:set_bg(beautiful.tooltip_bg_color or beautiful.bg_focus or "#ffcb60")

thank you :)
----------

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1148#comment3584

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

awesome | 13 May 2013 19:28
Gravatar

[awesome bugs] #1148 - tooltip_bg_color always set to normal bg (can't change tooltip bg_color)

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task is now closed:

FS#1148 - tooltip_bg_color always set to normal bg (can't change tooltip bg_color)
User who did this - Uli Schlachter (psychon)

Reason for closing: Fixed
Additional comments about closing: commit 14daf85fe91780e4ef49465c94e1cfb671391f0d
Author: Uli Schlachter <psychon <at> znc.in>
Date:   Mon May 13 19:27:19 2013 +0200

    awful.tooltip: Set the bg color correctly (FS#1148)

    Well, whoops. There is no .bg property on wiboxes for quite a while already, it
    is now a :set_bg member function.

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1148

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

awesome | 13 May 2013 19:10
Gravatar

[awesome bugs] #1148 - tooltip_bg_color always set to normal bg (can't change tooltip bg_color)

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

A new Flyspray task has been opened.  Details are below. 

User who did this - ayman (mony) 

Attached to Project - awesome
Summary - tooltip_bg_color always set to normal bg (can't change tooltip bg_color)
Task Type - Bug Report
Category - awful
Status - Unconfirmed
Assigned To - 
Operating System - All
Severity - Low
Priority - Normal
Reported Version - 3.5.1
Due in Version - Undecided
Due Date - Undecided
Details - theme.lua
https://github.com/mony960/dotfiles/blob/master/.config/awesome/themes/solarized/theme.lua
[code]
...
theme.tooltip_bg_color = "#586e75"
theme.tooltip_fg_color = "#fdf6e3"
...
[/code]

the bg color doesn't change
even if i changed 'self.wibox.gb' in tooltip.lua
its always set to theme.bg_normal
(Continue reading)

awesome | 13 May 2013 08:34
Gravatar

[awesome bugs] #1147 - Nested menus do not appear on the right-click menu.

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1147 - Nested menus do not appear on the right-click menu.
User who did this - Uli Schlachter (psychon)

----------
Your "menu3" is broken. Instead of

 { "menu3", { "submenu", terminal } }, 

you need

 { "menu3", { { "submenu", terminal } } }, 

However, even before this change, all the other parts of this work fine here. Since I don't have any good
ideas: Could you attach your rc.lua?
----------

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1147#comment3583

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.


Gmane