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.
SetGridAspect :: Rational -> ChangeGridGeomxmonad-contrib XMonad.Layout.GridVariants No documentation available.
SetMasterCols :: Int -> ChangeMasterGridGeomxmonad-contrib XMonad.Layout.GridVariants Set the number of master columns to absolute value
SetMasterFraction :: Rational -> ChangeMasterGridGeomxmonad-contrib XMonad.Layout.GridVariants Set the fraction of the screen used by the master grid
SetMasterRows :: Int -> ChangeMasterGridGeomxmonad-contrib XMonad.Layout.GridVariants Set the number of master rows to absolute value
SetLeftSlaveFraction :: Int -> Rational -> MRTMessagexmonad-contrib XMonad.Layout.MouseResizableTile No documentation available.
SetMasterFraction :: Rational -> MRTMessagexmonad-contrib XMonad.Layout.MouseResizableTile No documentation available.
SetRightSlaveFraction :: Int -> Rational -> MRTMessagexmonad-contrib XMonad.Layout.MouseResizableTile No documentation available.
-
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. SetGeometry :: Rectangle -> WindowArrangerMsgxmonad-contrib XMonad.Layout.WindowArranger No documentation available.
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.