summaryrefslogtreecommitdiff
path: root/manifests/xmonad.pp
blob: 6633a4b57bafaf090b8979422a015079a6902202 (plain)
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
# Setup xmonad, only tested on arch linux
class profiles::xmonad {
  ensure_packages ([
    'xmonad',
    'xmonad-contrib',
    # apparently really needed by xmonad
    'xorg-fonts-misc',
    'ghc',
    'xorg-xmessage',
    'dzen2',
    'dmenu',
    'rofi',
    'haskell-dbus',
    'haskell-old-locale',
    'haskell-old-time',
  ], { ensure => installed })

  # Rebuilt my local xmonad config after an upgrade to xmonad.
  # It's required, I think due to something with dynamic linking.
  # It's actually pretty ugly that I'm hardcoded in here, but
  # something had to be done.
  pacman::hook { 'xmonad':
    ensure      => 'absent',
    description => 'Rebuild local xmonad config.',
    when        => 'PostTransaction',
    exec        => '/bin/sudo -Hu hugo xmonad --recompile',
    trigger       => {
      type      => 'Package',
      operation => ['Upgrade', 'Install'],
      target    => 'xmonad*',
    },
  }
}