From: Arnout E. <no...@bz...> - 2012-09-15 21:23:26
|
On Sat, Sep 15, 2012 at 12:33:19PM -0400, Steven Hum wrote: > Essentially, I like to use popup launchers like synapse and launchy. Sounds like a good idea to me. > On a stacking wm and other tiling wm's, the popup dialogue displays in the > center of the active display. Sounds like what you want. > In notion, the dialogue shows by default in the center of the active frame. In that case they're not treated as an independent floating/transient window, but as a 'normal' window, and as such fitted into a frame. > Not functionally a big deal most of the time, provided the frame is of > sufficient width. When the window frame is not, the dialogue becomes > unusable as the input field is truncated (out of view). > > Is there a way to have the application show as expected in the middle of > the display? The 'float' and 'transient_mode' winprops are probably your best bets. Additionally the 'userpos' winprop may be of use. Looks like I tried Synapse myself before, and I arrived at: defwinprop{ class = "Synapse", float = true, transient_mode = "off", userpos = true, } I do feel we should support application like this 'out of the box' better. If you can test the above configuration, that'd be great, and I'd be willing to add it to the default config. Also, if we can find some other way to recognize windows that need to float, that might be even better. Kind regards, Arnout |