Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. SetGridAspect :: Rational -> ChangeGridGeom

    xmonad-contrib XMonad.Layout.GridVariants

    No documentation available.

  2. SetMasterCols :: Int -> ChangeMasterGridGeom

    xmonad-contrib XMonad.Layout.GridVariants

    Set the number of master columns to absolute value

  3. SetMasterFraction :: Rational -> ChangeMasterGridGeom

    xmonad-contrib XMonad.Layout.GridVariants

    Set the fraction of the screen used by the master grid

  4. SetMasterRows :: Int -> ChangeMasterGridGeom

    xmonad-contrib XMonad.Layout.GridVariants

    Set the number of master rows to absolute value

  5. SetLeftSlaveFraction :: Int -> Rational -> MRTMessage

    xmonad-contrib XMonad.Layout.MouseResizableTile

    No documentation available.

  6. SetMasterFraction :: Rational -> MRTMessage

    xmonad-contrib XMonad.Layout.MouseResizableTile

    No documentation available.

  7. SetRightSlaveFraction :: Int -> Rational -> MRTMessage

    xmonad-contrib XMonad.Layout.MouseResizableTile

    No documentation available.

  8. class SetsAmbiguous p

    xmonad-contrib XMonad.Layout.NoBorders

    SetsAmbiguous allows custom actions to generate lists of windows that should not have borders drawn through ConfigurableBorder To add your own (though perhaps those options would better belong as an additional constructor to Ambiguity), you can add the following function. Note that lr, the parameter representing the Rectangle of the parent layout, was added to hiddens in 0.14. Update your instance accordingly.

    data MyAmbiguity = MyAmbiguity deriving (Read, Show)
    
    instance SetsAmbiguous MyAmbiguity where
    hiddens _ wset lr mst wrs = otherHiddens Screen \\ otherHiddens OnlyScreenFloat
    where otherHiddens p = hiddens p wset lr mst wrs
    
    The above example is redundant, because you can have the same result with:
    layoutHook = lessBorders (Combine Difference Screen OnlyScreenFloat) (Tall 1 0.5 0.03 ||| ... )
    
    To get the same result as smartBorders:
    layoutHook = lessBorders Never (Tall 1 0.5 0.03 ||| ...)
    
    This indirect method is required to keep the Read and Show for ConfigurableBorder so that xmonad can serialize state.

  9. SetGeometry :: Rectangle -> WindowArrangerMsg

    xmonad-contrib XMonad.Layout.WindowArranger

    No documentation available.

  10. setNumCapabilities :: Int -> IO ()

    base Control.Concurrent

    Set the number of Haskell threads that can run truly simultaneously (on separate physical processors) at any given time. The number passed to forkOn is interpreted modulo this value. The initial value is given by the +RTS -N runtime flag. This is also the number of threads that will participate in parallel garbage collection. It is strongly recommended that the number of capabilities is not set larger than the number of physical processor cores, and it may often be beneficial to leave one or more cores free to avoid contention with other processes in the machine.

Page 142 of many | Previous | Next