-
-
Save IQubic/f8262777ebc4f9b9afe6b6aec895ea46 to your computer and use it in GitHub Desktop.
XMonad Compile Error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xmonad.hs:114:15: error: [GHC-58481] parse error on input ‘]’ | |
| | |
114 | ] | |
| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- named scratchpads | |
scratchpads :: [NamedScratchpad] | |
scratchpads = [ NS "Term" | |
(myTerm $ Just "scratchTerm") | |
(appName =? "scratchTerm") | |
myFloatPlace | |
, NS "Emacs" | |
(myEmacs ++ " --frame-parameters='(quote (name . \"scratchmacs\"))'" | |
(appName =? "scratchmacs") | |
myFloatPlace | |
] -- line 114 | |
where | |
myFloatPlace = customFloating (W.RationalRect 0.25 0 0.5 0.35) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment