Devil's Pie

Joe Gregorio

If you don't have enough Lisp in your life, and if you're running Metacity (if you're running a stock install of Ubuntu with Gnome that means you), then you can run Devil's Pie [Good docs.].


(if
    (is (application_name) "Terminal")
    (begin
       (maximize)
       (undecorate)
    )
)
Easier: (if (is (application_name) "Terminal") (fullscreen))

Posted by Mark on 2007-02-09

Mark,

That's similar, but not exactly the same, since (maximize)(undecorate) will leave the top and bottom panels visible.

Posted by joe on 2007-02-09

comments powered by Disqus