How can i make a floating window sink in xmonad ?

What''s the short-cut key ? 
thanks!

The default is Mod-t.
Config.hs wrote:...
, ((modMask,               xK_t     ), withFocused $ windows . W.sink) -- %! Push window back into tiling

Similar Messages

  • How can I make the "Enable to sink files" warning to go away?

    How can I make the "Enable to sink files" warning to go away?

    Hi Airmiranda
    The following doc should help: http://helpx.adobe.com/creative-cloud/kb/creative-cloud-files-wont-connect.html
    "If you are using Creative Cloud Connection preview, you will either see “Unable to sync file(s)” or “Unable to connect...” errors. To disable these error alerts, you can Turn Sync Off or Quit Creative Cloud Connection."
    Thanks
    Bev

  • How can I make the calendar window smaller?

    How can I make the Calender window smaller?

    Yes. It's at the minimum size via that method, but is much too large.  I like to have it open always and in the previous OS the window was much smaller. Thanks for the suggestion nonetheless.

  • How can I make word document window bigger. Have tried dragging bottom corner out & clicking on '+' sign but this does nothing?

    How can I make word document window bigger. Have tried dragging bottom corner out & clicking on '+' sign but this does nothing?

    Word - Microsoft Support

  • How can I make sure under Windows 8 in Explorer to get a real pdf document content file miniature and not the Adobe logo miniature?

    This is not a typical Windows 8 problem, I had the same problem with all my previous Acrobat versions on all previous Windows versions.
    How can I make sure that when consulting pdf files via Windows explorer the pdf file is represented as a genuine miniature of the document content itself and noit just a document icon with Adobe logo?

    Hi Josialaers,
    Turn the 'Preview Pane' ON and you should be able to see the content of the pdf when clicked.
    When 'Show preview handlers in preview pane ON' is checked in 'Folder Options' of Windows Explorer.
    Regards,
    Rave

  • How can I make my PowerPC/Windows programs work in Mac OS X Lion?

    In a few months I will be buying a MacBook Pro and I have a lot of old games that I would like to be able to play on it. But those games are Windows/PowerPC only and Mac OS X Lion does not support PowerPC. How can I make my old programs work in Mac OS X Lion?

    For porting Windows programs to Mac OS X, you can check out Wineskin.  It can be very simple to very hard to do though... its all a case by case basis.  The older the game is the more likely you are to get it to work easily though.

  • How can I make my player window bigger?

    Hi,
    I use Quicktime Pro with Flip4Mac when I watch previous tv programs from my home country. With my previous laptop running Windows you just had to double-click on the window and you got a big screen and you could adjust the size. How can I make this work on my Macbook?

    Choose options from the View menu as desired, or click on the window's title bar or the bottom right corner and drag them as desired.
    (40657)

  • How can I create a Floating Windows under LV 6.02?

    I am interested in adding to my application a floating window. I need that the behavior of that window will be exactly equal to the one which one can create in other programming language, I mean , that is found always on-top and that the window of the application that is found below follows being the principal area for the user.

    If you want to create a flotaing window , may be you mean Child Window. So in the first Place you must to get the handle to the VI that will be the floating window (child window).Use the "Find Windows Handle.vi" that I send you.
    In the control labeled "lpszWindowName" you must enter the name of VI that you want to be a floating window (child window).
    Once you get the handle or reference to the floating window (child window) ,the only thing that remainds to complete the operation is assign this handle or reference to the window that will be the parent window. The VI called "Make Child.vi" permorm the final operation. You must to pass the handle of the floating window (child window) to the control labeled "handle child Window" , and pass to the control lab
    eled "Name of Parent Window" the complete path to the VI that run as parent window. Of course if you want that the floating window was contained by the desktop just don´t pass anything to this control.
    I send the libraries that you must to use in order to performe the operation that previously comment.
    I hope you enjoy your Child Windows .
    Attachments:
    Child_windows.llb ‏48 KB

  • How can i make the popup window have scroll bar when the content is long?

    Hi,
    My page have a button, when click it, it will show a popup window, and invoke a taskflow.
    <af:commandToolbarButton text="edit"
                                             icon="#{sdk_EmImageMap.toolbar.editCommand.icon[true]}"
                                             disabledIcon="#{sdk_EmImageMap.toolbar.editCommand.icon[false]}"
                                             id="edit"
                                             binding="#{pageFlowScope.procBean.editBtn}"
                                             action="dialog:edit" immediate="true"
                                             partialSubmit="true" useWindow="true"
                                             windowEmbedStyle="inlineDocument"
                                             windowHeight="400" windowWidth="750">
    And the page in the taskflow is :
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:c="http://java.sun.com/jsp/jstl/core"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
       <jsp:directive.page contentType="text/html;charset=UTF-8"/>
       <f:view>
          <af:document title="#{pageFlowScope.procStepEditor.pageTitle}"
                       id="document">
             <af:form id="f1">
                <af:panelStretchLayout id="pgl1" topHeight="10%">
                   <f:facet name="top"/>
                   <f:facet name="center">
                      <af:panelStretchLayout id="psl1">
                         <f:facet name="center">
                            <af:panelGridLayout id="pgl3">
                               <af:gridRow marginTop="5px" height="auto" id="gr1">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc1">
                                     <af:panelBox text="panel 1"
                                                  id="pb1"
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
                               <af:gridRow marginTop="5px" height="auto" id="gr2">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc2">
                                     <af:panelBox text="panel 2"
                                                  id="pb2">
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
                               <af:gridRow marginTop="5px" height="auto" id="gr3">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc4">
                                     <af:panelBox text="panel 3"
                                                  id="pb3">
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
                            </af:panelGridLayout>
                         </f:facet>
                         <f:facet name="bottom">
                         </f:facet>
                      </af:panelStretchLayout>
                   </f:facet>
                </af:panelStretchLayout>
             </af:form>
          </af:document>
       </f:view>
    </jsp:root>
    And in panel 2, the content is added dynamically, so it cannot control the width. Once it is very long, then the UI will not show all the data in panel2, and panel 3 also cannot display.
    So i want to the window have a scroll bar. How can i do this?
    Thanks.

    Hi Timo.
    Thanks for your replies.
    I change the panel 2 like this:
    <af:gridRow marginTop="5px" height="auto" id="gr2">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc2">
                                     <af:panelBox text="panel 2"
                                                  id="pb2">
    <af:panelGroupLayout id="pgl4" layout="scroll>
    </af:panelGroupLayout>
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
    But it still cannot display a scroll bar for the panel 2.
    Thanks.

  • How can I make the login window's list longer?

    There are five of us in our family, but the login window only holds four names in Tiger. In Panther it held five, and now my youngest (whose name is alphabetically last) is disappointed because he has to scroll down to see his name.
    But there is plenty of screen real estate for a really long list! How can I have a longer list in the login window without scrolling?
    I posted this back when using Tiger, and hoped that Leopard would at least bring back the Panther days of 5 users in the list---if not a window that adjusted to the number of users. <Sigh>
    http://discussions.apple.com/thread.jspa?threadID=864315&tstart=0

    econupmac wrote:
    Yes, I've thought about making it fair that way. But then there are no more cute pictures, and we have to type more.
    I was also thinking about adding a character to the beginning of each long name. And then every once in a while changing the character that each family member has to change who is #5 on the list.
    Would changing the User Name cause problems?
    I thought of that but it's not a good idea. The repercussions might get messy. I don't know.
    This is not the short name, just the long one. The short user name can't be changed after creating the account.
    It can be changed but it's even more fraught with problems. If you right-click your user name in Accounts you have the option to change the short name - - but read the caveats carefully - and then perhaps don't do it.
    To get five, I could use the card suits and also a diamond.
    Next: An Applescript that randomly pre-fixes those symbols to each person's user name? Run the script each night or each time someone logs out. Hmm, System Preferences is scriptable.
    Again, I would not recommend name changes, esp. on a regular basis.
    If you use TimeMachine it might get confused.
    Your best bet is to send Apple an enhancement request for future OSs or even this one.
    I am sure that the OS can be hacked to do what you wish, but there are unintended consequences of each and every system hack - one of which is that updates expect certain things to be constant.
    One solution is to buy a second computer
    Even if you have 5 accounts on the login page, what if you gain a 6th?
    Message was edited by: nerowolfe

  • How can i make the internet windows cover the whole screen?

    My new macbook brings up a small internet window, and it's not the easiest to see, although the type and quality is good. I have tried changing the display under system preferences, but that makes the quality less. Does anyone have any suggestions? I am new to apple products so any hints would be gratefully received!

    This applies to the windows for all Mac applications, including your browser. If you look in the top left corner of the window you will see three dots -- red, yellow and green. The red dot closes the window, yellow minimizes, and the green dot will cause the window to enlarge (though not always to full screen). If the window doesn't go to full screen, you can enlarge it further by dragging the bottom right corner of the window (you'll see something that looks like a page corner that has been folded back).

  • How can I make new finder windows open in front

    Since upgrading to Lion, whenever I open a new window, installer, DMG, etc, it opens BEHIND all the other windows and I have to move windows out of the way in order to interact with application or whatever I have opened.
    I know this has to be a setting somewhere but I can't tell where it is and have no luck searching for the answer.
    Thanks,
    Alan

    I know this may not help but when u open finder instead of moving all the windows when u open finder right click on it put show all windows and u can click on finder for easier access
    Leo

  • How can I make a small window with no toolbars or other chrome?

    I want to create a second Firefox window that is smaller and has no chrome (toolbars, etc), so I can use it for things like pop out videos or reference pages. I could just pop out a window and manually remove all the things, but then this affects my main window next time I restart Firefox.

    Are you using the javascript method window.open() to create the popup? If so, you could try the features parameter.
    https://developer.mozilla.org/en-US/docs/DOM/window.open
    Note that by default, Firefox preserves some features, but you might be able to let those go by toggling various settings in about:config.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''window_''' and pause while the list is filtered
    For each of the preferences starting with
    '''dom. disable_window_open_feature. '''
    if the value is true, the script cannot remove that feature. If you toggle it to false by double-clicking, then your window.open() should be able to strip that feature. Unfortunately, this is not site-specific, so other sites also would have permission to omit those features.

  • How can I make invisible the menu "window" on oracle webforms

    anybody can tell me how can I make invisible menu "window" that appears on webforms?
    Thanks in advanced.

    Hi Andrew,
    Thank you for looking at my problem!
    Both my development system and test system are Window XP. The font size are all set to Normal. What other details do you need to know?
    The text on front panel shows well on my development machine. But when the .exe runs on my test machine, the text size was not adjusted by itself so the text body got cut off.
    I found a way to "fix" this problem: I had to drag the text box down and right so there is enough magin between the text body and the box on the right and at the bottom. I had to try it a few times until it finally shows well on my test machine. However, with those magins, it doesn't look nice on my development machine anymore. Also, I only tried on one test machine, if it looks good on one test machine, will it look good on all the other machines? Eventually my app is going to run on Window 7. I'll have to test that out and find out if it's still going to be a problem. Anyway, I don't feel this is the right way to do it. I hope someone knows what I'm talking about and have a soluction to it.
    Thanks very much!

  • The address window has shrunk. How can I make it longer so I can see the address (or most of it at least)?

    I have updated to Firefox 3.6.23 for Mac. I have OS 10.4.11. Immediately I noticed that the address window has been reduced to about half an inch. The search window is long, like the address window used to be. This is not good for me. I usually use the address window to make changes and move to a new page. I cannot do this now. How can I make the address window long again? Can I go back to 3.6.22? I need that long window.
    Sincerely,
    Gerald E. Strickland
    Bradenton, Florida

    You can place the mouse between the location bar and the search bar and it will become a resize icon.<br />
    Press the left mouse button and drag it to the right to make the location bar wider.
    You can also reset the relative wides by deleting localstore.rdf in the Firefox Profile Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/localstore.rdf

Maybe you are looking for