blob: 1049af825dd31ecad4a3b2f718b9fe914e184772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# paclist's config
# package lists to generate.
# the list will be generated using the specified command with
# the specified owner in the specified path.
lists=(
# user group path command
root root /etc/paclist/lists/official.list 'pacman -Qqne'
root root /etc/paclist/lists/aur.list 'pacman -Qqme'
root root /etc/paclist/lists/all.list 'pacman -Qq'
)
# suffix to add to list names
suffix=-$HOSTNAME
# wether to print extra info when generating the lists or not
verbose=false
|