Hey,
I have this function in my rc.lua
clientkeys = awful.util.table.join(
[...]
--Custom Begin
awful.key({ modkey }, "F8", function (c) if c.opacity < 0.95 then
c.opacity=c.opacity+0.05 else c.opacity=1 end end),
awful.key({ modkey }, "F7", function (c) if c.opacity > 0.05 then
c.opacity=c.opacity-0.05 else c.opacity=0 end end),
[...]
)
I use xcompmgr.
The code works, but the first time I decrase the opacity, it's set to
0. Increasing it before decreasing doesn't fix that.
Anyone else can confirm this?
--
To unsubscribe, send mail to [email protected].