1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class utils::interface {
# Interface
package { [ 'awesome', 'eterm', 'fluxbox', 'gnome-terminal', 'conky',
'xterm', 'bash-completion', 'tmux', 'xscreensaver', 'rxvt-unicode',
'mc', 'gtk-theme-switch', 'gtk-smooth-themes', 'rxvt', 'lxappearance',
'xtitle', 'xclip', 'conkyforecast', 'awesome-extra', 'numlockx' ]:
ensure => installed,
}
# Fonts
package { [ 'xfonts-terminus', 'ttf-bitstream-vera', 'ttf-inconsolata' ]:
ensure => installed,
}
}
|