Initial commit.

master v0.0.1
Carl Kittelberger 2017-06-21 10:46:04 +02:00
commit 73bafcbce9
Signed by: icedream
GPG Key ID: C1D30A06E6490C14
4 changed files with 179 additions and 0 deletions

View File

@ -0,0 +1,49 @@
{
"aria2": {
"args": [
"--allow-overwrite=true",
"--always-resume=false",
"--auto-file-renaming=false",
"--check-integrity=true",
"--conditional-get=true",
"--continue=true",
"--file-allocation=none",
"--log-level=error",
"--console-log-level=error",
"--max-concurrent-downloads=100",
"--max-connection-per-server=5",
"--min-split-size=5M",
"--remote-time=true",
"--show-console-readout=true"
],
"path": "/usr/bin/aria2c"
},
"pacman": {
"config": "/etc/pacman.conf",
"path": "/usr/bin/pacman"
},
"pacserve": {
"server": null
},
"powerpill": {
"select": true,
"reflect databases": false
},
"reflector": {
"args.unused": [
"--protocol",
"http",
"--latest",
"50"
]
},
"rsync": {
"args": [
"--no-motd",
"--progress"
],
"db only": true,
"path": "/usr/bin/rsync",
"servers": []
}
}

39
etc/xdg/cower/config Normal file
View File

@ -0,0 +1,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 =
# 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 =
# 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 =
# 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 =
# vim: set noet syn=conf

20
etc/xdg/pacaur/config Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
#
# /etc/xdg/pacaur/config
#
# The following options are commented out with their default values listed.
# If you wish to use different values, uncomment and update the values.
# The Color and VerbosePkgLists options can be enabled in /etc/pacman.conf.
# The clone directory can be changed through the $AURDEST environment variable.
# The makepkg environment variables are also fully honored.
#editor="${VISUAL:-${EDITOR:-vi}}" # build files editor
#displaybuildfiles=diff # display build files (none|diff|full)
#fallback=true # pacman fallback to the AUR
#silent=false # silence output
#sortby=popularity # sort method (name|votes|popularity)
#sortorder=descending # sort order (ascending|descending)
#sudoloop=true # prevent sudo timeout
pacmanbin=powerpill

71
etc/yaourtrc Normal file
View File

@ -0,0 +1,71 @@
# yaourtrc - Configuration for yaourt
#
# See yaourtrc(5) for more information
#
#
# General
#AUTOSAVEBACKUPFILE=0
#DEVEL=0
#DEVELSRCDIR=""
#FORCE=0
#NO_TESTDB=0
# Environment variables
#EDITOR="$EDITOR"
#TMPDIR="/tmp"
#VISUAL="$VISUAL"
# SUDO
#SUDONOVERIF=0 # Avoid multiple sudo checks when timestamp_timeout=0
SUDOREDIRECT=0 # Define to 0 in case you use a fingerprint device
# ABS
#USE_GIT=0
# If the package "abs" is installed, those var are parsed from abs.conf
#REPOS=() # REPOS available at $SYNCSERVER
#SYNCSERVER=""
# AUR
#AURURL="https://aur.archlinux.org"
#AURCOMMENT=5
#AURDEVELONLY=0
#AURSEARCH=1
#AURSHOWDIFF=0
#AURUPGRADE=0
#AURVOTE=1
#AURUSEGIT=0
# Build
#EXPORT=0 # Export to 1: EXPORTDIR or PKGDEST
# 2: pacman cache (as root)
#EXPORTSRC=0 # Need EXPORT>0 to be used
#EXPORTDIR="" # If empty, use makepkg's configuration (see makepkg.conf)
# Prompt
#NOCONFIRM=0
#UP_NOCONFIRM=0 # No prompt while build upgrades (including -Sbu)
#BUILD_NOCONFIRM=0 # Only prompt for editing files
#PU_NOCONFIRM=0 # Add --noconfirm to $PACMAN -U
#EDITFILES=1
#NOENTER=1
# Output
#USECOLOR=1
#USEPAGER=0
#DETAILUPGRADE=1
#SHOWORPHANS=1
#TERMINALTITLE=1
# Command
PACMAN="powerpill"
#MAKEPKG="makepkg"
#DIFFEDITCMD="vimdiff"
# pacdiffviewer
#P_LOCATE=0 # Use locate instead of find
#P_SEARCHDIR=(/etc/ /boot/)
#P_SAVEDIR='/var/lib/yaourt/backupfiles'
# customizepkg
CUSTOMIZEPKGINSTALLED=1