[pacaur->yay] replace pacaur with yay (aur-helpers)

This commit is contained in:
Felix Buehler 2019-01-02 15:57:16 +01:00
parent ec19b0fc0f
commit 680c723a99
4 changed files with 44 additions and 22 deletions

View file

@ -17,9 +17,9 @@
["mkdir -p ~/.config/i3", "Creating i3-config dir"], ["mkdir -p ~/.config/i3", "Creating i3-config dir"],
["mkdir -p ~/.config/i3status", "Creating i3-status dir"], ["mkdir -p ~/.config/i3status", "Creating i3-status dir"],
["mkdir -p ~/.config/dunst", "Creating dunst dir"], ["mkdir -p ~/.config/dunst", "Creating dunst dir"],
["mkdir -p ~/.config/pacaur", "Creating pacaur dir"], ["mkdir -p ~/.config/yay", "Creating yay dir"]
["mkdir -p ~/.config/redshift/hooks", "Creating redshift dir"], ["mkdir -p ~/.config/redshift/hooks", "Creating redshift dir"],
["mkdir -p ~/.vim/", "Creating vim dir"] ["mkdir -p ~/.vim/", "Creating vim dir"],
] ]
}, },
{ {
@ -54,7 +54,7 @@
"~/.profile.d/81-fzf.sh": "shell/fzf.sh", "~/.profile.d/81-fzf.sh": "shell/fzf.sh",
"~/.config/redshift.conf": "redshift/redshift.conf", "~/.config/redshift.conf": "redshift/redshift.conf",
"~/.config/redshift/hooks/hook.sh": "redshift/hook.sh", "~/.config/redshift/hooks/hook.sh": "redshift/hook.sh",
"~/.config/pacaur/config": "pacaur/config", "~/.config/yay/config.json": "yay/config.json",
"~/.tmux.conf": "tmux/tmux.conf", "~/.tmux.conf": "tmux/tmux.conf",
"~/.toprc": "top/toprc", "~/.toprc": "top/toprc",
"~/.config/htop/htoprc": "top/htoprc", "~/.config/htop/htoprc": "top/htoprc",

View file

@ -1,18 +0,0 @@
#!/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:-vim}}" # build files editor
displaybuildfiles=none # 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

View file

@ -99,7 +99,7 @@ alias key-repair-all='wget -q http://archive.getdeb.net/getdeb-archive.key -O- |
# ARCH: # ARCH:
alias pacman-update='sudo pacman -Syu' alias pacman-update='sudo pacman -Syu'
alias pacaur-update='pacaur -Syua' alias aur-update='yay -Syua'
# DOTFILES: # DOTFILES:
alias dotfile-update-submodules='cd ~/.dotfiles/ && git submodule foreach git pull origin master' alias dotfile-update-submodules='cd ~/.dotfiles/ && git submodule foreach git pull origin master'

40
yay/config.json Normal file
View file

@ -0,0 +1,40 @@
{
"aururl": "https://aur.archlinux.org",
"buildDir": "$HOME/.cache/yay",
"editor": "",
"editorflags": "",
"makepkgbin": "makepkg",
"makepkgconf": "",
"pacmanbin": "pacman",
"pacmanconf": "/etc/pacman.conf",
"tarbin": "bsdtar",
"redownload": "no",
"rebuild": "no",
"answerclean": "",
"answerdiff": "",
"answeredit": "",
"answerupgrade": "",
"gitbin": "git",
"gpgbin": "gpg",
"gpgflags": "",
"mflags": "",
"sortby": "votes",
"gitflags": "",
"removemake": "ask",
"requestsplitn": 150,
"sortmode": 0,
"completionrefreshtime": 7,
"sudoloop": false,
"timeupdate": false,
"devel": false,
"cleanAfter": false,
"gitclone": true,
"provides": true,
"pgpfetch": true,
"upgrademenu": true,
"cleanmenu": false,
"diffmenu": false,
"editmenu": false,
"combinedupgrade": false,
"useask": false
}