diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2022-11-23 00:26:58 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-11-23 00:26:58 -0700 |
| commit | 1f25484605881af1a8e1475565d2ceb20b88ea85 (patch) | |
| tree | 0dcdb9a3814d51779f7b9aedd39ae516b540f54b /src/Rahm/Desktop/Layout/Rotate.hs | |
| parent | 80021afcb29332cfddbd8f7d24a107298064383c (diff) | |
| download | rde-1f25484605881af1a8e1475565d2ceb20b88ea85.tar.gz rde-1f25484605881af1a8e1475565d2ceb20b88ea85.tar.bz2 rde-1f25484605881af1a8e1475565d2ceb20b88ea85.zip | |
Change to use minimal imports.
This is achieved by using `stack build --ghc-options=-ddump-minimal-imports`
and looking for the *.imports files.
Diffstat (limited to 'src/Rahm/Desktop/Layout/Rotate.hs')
| -rw-r--r-- | src/Rahm/Desktop/Layout/Rotate.hs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/Rahm/Desktop/Layout/Rotate.hs b/src/Rahm/Desktop/Layout/Rotate.hs index e6f9a64..467ed96 100644 --- a/src/Rahm/Desktop/Layout/Rotate.hs +++ b/src/Rahm/Desktop/Layout/Rotate.hs @@ -11,9 +11,19 @@ module Rahm.Desktop.Layout.Rotate where import Control.Arrow (second) -import Data.Default (Default (..)) +import Data.Default () import XMonad + ( Default (..), + LayoutClass (description), + Message, + Rectangle (Rectangle), + fromMessage, + mirrorRect, + ) import XMonad.Layout.LayoutModifier + ( LayoutModifier (modifyDescription, pureMess, pureModifier), + ModifiedLayout (..), + ) -- Just a wrapper over a Bool. newtype Rotate a = Rotate Bool |