aboutsummaryrefslogtreecommitdiffstats
path: root/cower/config
blob: 83d79780672368d50bdd7c3a4924a857565ed16b (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
34
35
36
37
38
39
#
# example cower config file
#
# All options here can be overriden with flags on the command line. All options
# are case sensitive. This file will be read per user, and should be located at
# $XDG_CONFIG_HOME/cower/config or $HOME/.config/cower/config.
#

# Use color in the output. This takes an optional arg of auto/never/always,
# identical to the command line arg --color. If no arg is specified, this is
# assumed to mean auto.
Color = always

# Connection timeout to be passed to curl. Setting this to 0 will disable
# timeouts.
#ConnectTimeout =

# Always ignore out of date packages. This can be overridden on the command line
# with --no-ignore-ood.
#IgnoreOOD

# Ignore the specified packages when checking for updates. Multiple arguments
# to this option should be space delimited. Similar to the --ignore option,
# this is in addition to any packages found in pacman's config.
IgnorePkg = *-git

# Ignore the specified binary repos when checking for updates. Multiple arguments
# to this option should be space delimited.
#IgnoreRepo =

# Absolute path to download and extract to. Parameter and tilde expansions are
# honored here.
TargetDir = /home/kyrias/build/

# Max number of threads cower will use. This is synonymous with the max number
# of concurrent connections that will be opened to the AUR.
MaxThreads = 4

# vim: set noet syn=conf