From 0bb331b55ddc4c85bf162706b78fd634211c965c Mon Sep 17 00:00:00 2001 From: cptpcrd <31829097+cptpcrd@users.noreply.github.com> Date: Mon, 20 Apr 2020 11:43:19 -0400 Subject: [PATCH] Fix Arch Linux installation instructions (#644) `pacman -Sy` does a partial upgrade, which is specifically documented as being unsupported. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f39cc19..10a38432 100644 --- a/README.md +++ b/README.md @@ -412,7 +412,7 @@ echo 'source /usr/local/opt/powerlevel10k/powerlevel10k.zsh-theme' >>! ~/.zshrc ### Arch Linux ```zsh -pacman -Sy --noconfirm zsh-theme-powerlevel10k +pacman -S --noconfirm zsh-theme-powerlevel10k echo 'source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme' >>! ~/.zshrc ```