From 03fb6c9100198411fefa64b0e8255010bf1f8756 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Tue, 23 Jul 2024 03:07:47 +0200 Subject: [PATCH] feat(yay): add yay config --- .config/yay/config.json | 50 +++++++++++++++++++++++++++++++++++++++++ bootstrap.sh | 2 ++ 2 files changed, 52 insertions(+) create mode 100644 .config/yay/config.json diff --git a/.config/yay/config.json b/.config/yay/config.json new file mode 100644 index 0000000..bb544f1 --- /dev/null +++ b/.config/yay/config.json @@ -0,0 +1,50 @@ +{ + "aururl": "https://aur.archlinux.org", + "aurrpcurl": "https://aur.archlinux.org/rpc?", + "buildDir": "/home/oscar/.cache/yay", + "editor": "", + "editorflags": "", + "makepkgbin": "makepkg", + "makepkgconf": "", + "pacmanbin": "pacman", + "pacmanconf": "/etc/pacman.conf", + "redownload": "no", + "answerclean": "", + "answerdiff": "", + "answeredit": "", + "answerupgrade": "", + "gitbin": "git", + "gpgbin": "gpg", + "gpgflags": "", + "mflags": "", + "sortby": "votes", + "searchby": "name-desc", + "gitflags": "", + "removemake": "ask", + "sudobin": "sudo", + "sudoflags": "", + "version": "12.3.5", + "requestsplitn": 150, + "completionrefreshtime": 7, + "maxconcurrentdownloads": 1, + "bottomup": true, + "sudoloop": true, + "timeupdate": false, + "devel": false, + "cleanAfter": false, + "keepSrc": false, + "provides": true, + "pgpfetch": true, + "cleanmenu": true, + "diffmenu": true, + "editmenu": false, + "combinedupgrade": true, + "useask": false, + "batchinstall": false, + "singlelineresults": false, + "separatesources": true, + "debug": false, + "rpc": true, + "doubleconfirm": true, + "rebuild": "no" +} diff --git a/bootstrap.sh b/bootstrap.sh index adf067a..1fc1f18 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -42,6 +42,7 @@ SYMLINKS=( ".zshrc" ".zsh_functions" ".zsh_plugins.txt" + ".p10k.zsh" ".gtkrc-2.0" ".config/tmux" ".config/alacritty" @@ -53,6 +54,7 @@ SYMLINKS=( ".config/lf" ".config/gtk-3.0" ".config/gtk-4.0" + ".config/yay" ".local/bin" ".local/share/fonts" )