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. data SetList

    relational-schemas Database.Custom.SQLite3

    Type tag for aggregatings GROUPING SETS

  2. data SetOp

    riak-protobuf Data.Riak.Proto

    Fields :

    • adds :: Lens' SetOp [Data.ByteString.ByteString]
    • vec'adds :: Lens' SetOp (Data.Vector.Vector Data.ByteString.ByteString)
    • removes :: Lens' SetOp [Data.ByteString.ByteString]
    • vec'removes :: Lens' SetOp (Data.Vector.Vector Data.ByteString.ByteString)

  3. data Settings

    rollbar Rollbar

    No documentation available.

  4. Settings :: Environment -> ApiToken -> HostName -> Bool -> Settings

    rollbar Rollbar

    No documentation available.

  5. newtype Setter (m :: Type -> Type) a

    stateref Data.Accessor

    No documentation available.

  6. Setter :: (a -> m ()) -> Setter (m :: Type -> Type) a

    stateref Data.Accessor

    No documentation available.

  7. data SetStruts

    xmonad-contrib XMonad.Hooks.ManageDocks

    SetStruts is a message constructor used to set or unset specific struts, regardless of whether or not the struts were originally set. Here are some example bindings: Show all gaps:

    ,((modm .|. shiftMask  ,xK_b),sendMessage $ SetStruts [minBound .. maxBound] [])
    
    Hide all gaps:
    ,((modm .|. controlMask,xK_b),sendMessage $ SetStruts [] [minBound .. maxBound])
    
    Show only upper and left gaps:
    ,((modm .|. controlMask .|. shiftMask,xK_b),sendMessage $ SetStruts [U,L] [minBound .. maxBound])
    
    Hide the bottom keeping whatever the other values were:
    ,((modm .|. controlMask .|. shiftMask,xK_g),sendMessage $ SetStruts [] [D])
    

  8. SetStruts :: [Direction2D] -> [Direction2D] -> SetStruts

    xmonad-contrib XMonad.Hooks.ManageDocks

    No documentation available.

  9. module XMonad.Hooks.SetWMName

    Sets the WM name to a given string, so that it could be detected using _NET_SUPPORTING_WM_CHECK protocol. May be useful for making Java GUI programs work, just set WM name to "LG3D" and use Java 1.6u1 (1.6.0_01-ea-b03 works for me) or later. To your xmonad.hs file, add the following line:

    import XMonad.Hooks.SetWMName
    
    Then edit your startupHook:
    startupHook = setWMName "LG3D"
    
    For details on the problems with running Java GUI programs in non-reparenting WMs, see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6429775 and related bugs. Setting WM name to "compiz" does not solve the problem, because of yet another bug in AWT code (related to insets). For LG3D insets are explicitly set to 0, while for other WMs the insets are "guessed" and the algorithm fails miserably by guessing absolutely bogus values. For detailed instructions on editing your hooks, see the tutorial and XMonad.Doc.Extending.

  10. SetTheme :: Theme -> DecorationMsg

    xmonad-contrib XMonad.Layout.Decoration

    No documentation available.

Page 141 of many | Previous | Next