diff --git a/README.org b/README.org index 997d055..35eb42d 100644 --- a/README.org +++ b/README.org @@ -152,13 +152,14 @@ welcome || err "User choose to exit." #+end_src * Adding the CBSH Repos to your system. +Right now nothing is signed as i'm still testing stuff between my work PC and home PC and dealing with two seperate gpg keys is a pain so for now everything is unsigned, once everything is working properly i will be signing everything. #+begin_src bash addrepos() { \ echo "####################################################" echo "## Adding the CBSH repository to /etc/pacman.conf ##" echo "####################################################" grep -qxF "[cbsh-arch-repo]" /etc/pacman.conf || - (echo "[cbsh-arch-repo]"; echo "SigLevel = Required DatabaseOptional"; \ + (echo "[cbsh-arch-repo]"; echo "SigLevel = Optional DatabaseOptional"; \ echo "Server = https://gitlab.com/cabooshyy/\$repo/-/raw/main/\$arch") | sudo tee -a /etc/pacman.conf } addrepos || err "Error adding the Repo to /etc/pacman.conf."