[Bearcat M. Sandor, 2012-02-03]
> Does xcompmgr only make darker colors transparent?
for URxvt I prefer to set the transparency via ~/.Xdefaults:
| URxvt.background: rgba:0000/0000/0000/efff
| URxvt.depth: 32
(remember to `xrdb ~/.Xdefaults` before opening new window)
BTW, my rc.lua contains:
| local set_opacity = function(client, value)
| local v = client.opacity + value
| if v >= 1 then
| v = 1
| elseif v < 0.1 then
| v = 0.1
| end
| client.opacity = v
| end
and in clientkeys:
| awful.key({ modkey, }, "Next", function (c) set_opacity(c, -0.1) end),
| awful.key({ modkey, }, "Prior", function (c) set_opacity(c, 0.1) end)
so that I can use mod+PgUp/PgDown to change opacity in other windows
.oO(being able to use Python instead of Lua would make Awesome even more
awesome)
--
Piotr Ożarowski Debian GNU/Linux Developer
www.ozarowski.pl www.griffith.cc www.debian.org
GPG Fingerprint: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645
--
To unsubscribe, send mail to [email protected].