2023-05-15 21:11:30 +08:00
|
|
|
cabal-version: 3.0
|
|
|
|
name: xmonad-config
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: A tiling window manager
|
|
|
|
description: my xmonad configuration
|
|
|
|
license: BSD-3-Clause
|
|
|
|
author: sajenim
|
|
|
|
maintainer: its.jassy@pm.me
|
|
|
|
build-type: Simple
|
|
|
|
|
2024-07-26 08:47:20 +08:00
|
|
|
executable xmonad
|
2023-05-15 21:11:30 +08:00
|
|
|
main-is: xmonad.hs
|
|
|
|
hs-source-dirs: src
|
|
|
|
ghc-options: -Wall
|
|
|
|
build-depends: base,
|
2024-07-26 08:47:20 +08:00
|
|
|
X11,
|
2023-05-15 21:11:30 +08:00
|
|
|
xmonad,
|
|
|
|
xmonad-contrib
|
|
|
|
default-language: Haskell2010
|
|
|
|
|