aboutsummaryrefslogtreecommitdiff
path: root/src/Rahm/Desktop/Layout/Redescribe.hs
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2022-11-23 00:26:58 -0700
committerJosh Rahm <joshuarahm@gmail.com>2022-11-23 00:26:58 -0700
commit1f25484605881af1a8e1475565d2ceb20b88ea85 (patch)
tree0dcdb9a3814d51779f7b9aedd39ae516b540f54b /src/Rahm/Desktop/Layout/Redescribe.hs
parent80021afcb29332cfddbd8f7d24a107298064383c (diff)
downloadrde-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/Redescribe.hs')
-rw-r--r--src/Rahm/Desktop/Layout/Redescribe.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Rahm/Desktop/Layout/Redescribe.hs b/src/Rahm/Desktop/Layout/Redescribe.hs
index f5e51b7..4a1a918 100644
--- a/src/Rahm/Desktop/Layout/Redescribe.hs
+++ b/src/Rahm/Desktop/Layout/Redescribe.hs
@@ -3,9 +3,14 @@
-- to generate the new description.
module Rahm.Desktop.Layout.Redescribe where
-import Data.Typeable (Typeable)
+import Data.Typeable ()
import qualified Rahm.Desktop.StackSet as W
+ ( Workspace (Workspace),
+ )
import XMonad
+ ( LayoutClass (description, handleMessage, runLayout),
+ Typeable,
+ )
-- Type-class to modify the description of a layout.
class Describer m l where