diff options
| author | tv <tv@krebsco.de> | 2022-04-04 15:19:19 +0200 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2022-12-05 17:43:12 +0100 |
| commit | 71aef1f0b75f8030160b9b98a7dd5cea17a528cd (patch) | |
| tree | 42b5e2370fa5d8146b361485724980275d108143 /tv/5pkgs/haskell/xmonad-tv/src/Build.hs | |
| parent | 29674bc0200e07f78136a465c1cca2c3e49db262 (diff) | |
tv xmonad: move my* to Build
This prevents Main from getting rebuilt due to TH whenever one of its
imported modules changes.
Diffstat (limited to 'tv/5pkgs/haskell/xmonad-tv/src/Build.hs')
| -rw-r--r-- | tv/5pkgs/haskell/xmonad-tv/src/Build.hs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tv/5pkgs/haskell/xmonad-tv/src/Build.hs b/tv/5pkgs/haskell/xmonad-tv/src/Build.hs new file mode 100644 index 0000000..553a129 --- /dev/null +++ b/tv/5pkgs/haskell/xmonad-tv/src/Build.hs @@ -0,0 +1,24 @@ +{-# LANGUAGE TemplateHaskell #-} +{-# LANGUAGE TypeApplications #-} + +module Build where + +import XMonad (Dimension) +import THEnv.JSON (getCompileEnvJSONExp) + + +myFont :: String +myFont = + "-schumacher-*-*-*-*-*-*-*-*-*-*-*-iso10646-*" + +myScreenWidth :: Dimension +myScreenWidth = + $(getCompileEnvJSONExp (id @Dimension) "XMONAD_BUILD_SCREEN_WIDTH") + +myTermFontWidth :: Dimension +myTermFontWidth = + $(getCompileEnvJSONExp (id @Dimension) "XMONAD_BUILD_TERM_FONT_WIDTH") + +myTermPadding :: Dimension +myTermPadding = + 2 |
