Added by Kanim Mani about 15 years ago
Hi,
first is there a way to get urgent in subtle(for example if a downloads finished the browser tag becomes red)
and second now you are only able to have two windows next to each other with each filing up 50% of the screen i would rather love to have an option like 30% 70% this would be usefull for im clients
thx
Yea, subtle supports urgent windows but the window also have to use this. ;)
This is a common question, I am currently thinking about how to add more flexibility to the layout system. I will keep you informed.
A way arround is with floating windows which can be set like with a grab:
"A-t" => lambda {
screen = current_screen
width30 = screen.width * 30 / 100
width70 = screen.width * 70 / 100
find_client("win_a").size = [ 0, 0, width30, screen.height ]
find_client("win_a").size = [ width30, 0, width70, screen.height ]
}