diff --git a/install.conf.json b/install.conf.json index 833dd88..69ec8ed 100644 --- a/install.conf.json +++ b/install.conf.json @@ -17,9 +17,9 @@ ["mkdir -p ~/.config/i3", "Creating i3-config dir"], ["mkdir -p ~/.config/i3status", "Creating i3-status 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 ~/.vim/", "Creating vim dir"] + ["mkdir -p ~/.vim/", "Creating vim dir"], ] }, { @@ -54,7 +54,7 @@ "~/.profile.d/81-fzf.sh": "shell/fzf.sh", "~/.config/redshift.conf": "redshift/redshift.conf", "~/.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", "~/.toprc": "top/toprc", "~/.config/htop/htoprc": "top/htoprc", diff --git a/pacaur/config b/pacaur/config deleted file mode 100644 index 5148e2d..0000000 --- a/pacaur/config +++ /dev/null @@ -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 diff --git a/shell/aliases.sh b/shell/aliases.sh index 3991031..a2d5936 100755 --- a/shell/aliases.sh +++ b/shell/aliases.sh @@ -99,7 +99,7 @@ alias key-repair-all='wget -q http://archive.getdeb.net/getdeb-archive.key -O- | # ARCH: alias pacman-update='sudo pacman -Syu' -alias pacaur-update='pacaur -Syua' +alias aur-update='yay -Syua' # DOTFILES: alias dotfile-update-submodules='cd ~/.dotfiles/ && git submodule foreach git pull origin master' diff --git a/yay/config.json b/yay/config.json new file mode 100644 index 0000000..123c05f --- /dev/null +++ b/yay/config.json @@ -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 +} \ No newline at end of file