diff options
author | cptpcrd <31829097+cptpcrd@users.noreply.github.com> | 2020-04-20 18:43:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 18:43:19 +0300 |
commit | 0bb331b55ddc4c85bf162706b78fd634211c965c (patch) | |
tree | 910d588a6a2ee15e9a72319540f2d917482e6720 /README.md | |
parent | 681f504d8ac98c5ac1b166999ceebc72cace2260 (diff) |
Fix Arch Linux installation instructions (#644)
`pacman -Sy` does a partial upgrade, which is specifically documented as
being unsupported.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ``` |