xmonad-custom/xmonad-custom.cabal

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-07-16 13:42:29 +02:00
name: xmonad-custom
version: 1.0
2022-07-16 14:21:40 +02:00
build-type: Simple
2022-07-16 13:42:29 +02:00
cabal-version: 1.12
flag pedantic
description: Be pedantic (-Werror and the like)
default: False
manual: True
library
2022-07-16 14:21:40 +02:00
exposed-modules: XMonad.Custom.BindingUtils
2022-07-16 13:42:29 +02:00
XMonad.Custom.BasicKeyBindings
2022-07-16 14:22:04 +02:00
XMonad.Custom.SystemKeyBindings
2022-07-18 18:57:18 +02:00
XMonad.Custom.AudioKeyBindings
2022-07-17 10:02:43 +02:00
XMonad.Custom.ProgramWorkspaces
2022-07-16 14:21:40 +02:00
XMonad.Custom.UniversitySetup
2022-07-17 08:47:11 +02:00
XMonad.Custom.Layout
2022-07-18 21:48:02 +02:00
XMonad.Custom.Prompt
XMonad.Custom.Workspaces
2022-07-17 09:59:10 +02:00
XMonad.Custom.Modifiers
2022-07-17 10:25:37 +02:00
XMonad.Custom.NumberWorkspaces
2022-07-18 21:48:02 +02:00
XMonad.Custom.WorkspaceNames
XMonad.Custom.TopicSpace
2022-07-16 13:42:29 +02:00
hs-source-dirs: src
ghc-options: -funbox-strict-fields -Wall -Wno-unused-do-bind
build-depends: base
, xmonad
2022-07-16 16:56:29 +02:00
, xmonad-contrib
2022-07-16 13:42:29 +02:00
, ghc
2022-07-17 09:59:10 +02:00
, X11
, containers
2022-07-16 14:21:40 +02:00
default-language: Haskell2010