Project

General

Profile

unexist.dev

subtle

Assorted tidbits and projects

urgent and new layouts

Added by Kanim Mani over 14 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


Replies (2)

RE: urgent and new layouts - Added by Kanim Mani over 14 years ago

oh urgent is already in :P

RE: urgent and new layouts - Added by Christoph Kappel over 14 years ago

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 ]
}
    (1-2/2)