summaryrefslogtreecommitdiff
path: root/community/xmonad/xmonad.install
blob: 96b94dc02a15f7c85ed94838ec5e6ee7ed97ef70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
HS_DIR=/usr/share/haskell/xmonad

post_install() {
    ${HS_DIR}/register.sh
    echo "xmonad now has dynamic configuration via ~/.xmonad/xmonad.hs"
    echo "See http://haskell.org/haskellwiki/Xmonad/Config_archive for examples"
}

pre_upgrade() {
  ${HS_DIR}/unregister.sh
}

post_upgrade() {
  ${HS_DIR}/register.sh
}

pre_remove() {
  ${HS_DIR}/unregister.sh
}