-
Notifications
You must be signed in to change notification settings - Fork 7
/
xmonad-utils.cabal
73 lines (64 loc) · 2.43 KB
/
xmonad-utils.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Name: xmonad-utils
Version: 0.1.3.3
License: BSD3
License-file: LICENSE
Author: Andrea Rossato
Maintainer: <[email protected]>
Stability: experimental
Category: System
Synopsis: A small collection of X utilities
Description: A small collection of X utilities useful when
running XMonad. It includes:
.
* hxsel: which returns the text currently in the X selection;
.
* hxput: sets the value of the X paste buffer;
.
* hslock: a simple X screen lock;
.
* hmanage: an utility to toggle the override-redirect property of any
window;
.
* and hhp: a simple utility to hide the pointer, similar
to unclutter.
Homepage: https://github.com/LeifW/xmonad-utils
Build-type: Simple
Cabal-version: >=1.6
tested-with: GHC>=7.4.2
Executable hxsel
Build-depends: base<5, X11>=1.3, ghc>=6.8, unix, random>=1.0
Main-is: Hxsel.hs
hs-source-dirs: src
ghc-options: -funbox-strict-fields -Wall
ghc-prof-options: -prof -auto-all
Executable hxput
Build-depends: base<5, X11>=1.3, ghc>=6.8, unix, random>=1.0
Main-is: Hxput.hs
hs-source-dirs: src
ghc-options: -funbox-strict-fields -Wall
ghc-prof-options: -prof -auto-all
Executable hslock
Build-depends: base<5, X11>=1.3, ghc>=6.8, unix, random>=1.0
Main-is: Hslock.hs
Other-Modules: Utils
extensions: ForeignFunctionInterface
hs-source-dirs: src
extra-libraries: crypt
ghc-options: -funbox-strict-fields -Wall
ghc-prof-options: -prof -auto-all
Executable hmanage
Build-depends: base<5, X11>=1.3, ghc>=6.8, unix, random>=1.0
Main-is: Hmanage.hs
hs-source-dirs: src
ghc-options: -funbox-strict-fields -Wall
ghc-prof-options: -prof -auto-all
Executable hhp
Build-depends: base<5, X11>=1.3, ghc>=6.8, unix, random>=1.0
Main-is: Hhp.hs
Other-Modules: Utils
hs-source-dirs: src
ghc-options: -funbox-strict-fields -Wall
ghc-prof-options: -prof -auto-all
source-repository head
type: git
location: https://github.com/LeifW/xmonad-utils.git