diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-09-02 14:47:29 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-09-02 14:47:29 +0300 |
commit | 2c7241c43de9aa200498e1cd55cf4926de31ffe4 (patch) | |
tree | c54fd28e6f6da6550613b20c3315f7a3da4fb4a5 | |
parent | b3b0efb69f5b7817490aa9163ca44b40699b2bcc (diff) |
add an extra step to the uninstallation instructions to delete cache files (#1561)
-rw-r--r-- | README.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -707,7 +707,11 @@ The command to update Powerlevel10k depends on how it was installed. | [Zinit](#zinit) | `zinit delete romkatv/powerlevel10k` | | [Homebrew](#homebrew) | `brew uninstall powerlevel10k; brew untap romkatv/powerlevel10k` | | [Arch Linux](#arch-linux) | `yay -R --noconfirm zsh-theme-powerlevel10k-git` | -5. Restart Zsh. [Do not use `source ~/.zshrc`](#weird-things-happen-after-typing-source-zshrc). +6. Restart Zsh. [Do not use `source ~/.zshrc`](#weird-things-happen-after-typing-source-zshrc). +7. Delete Powerlevel10k cache files. + ```zsh + rm -rf -- "${XDG_CACHE_HOME:-$HOME/.cache}"/p10k-*(N) "${XDG_CACHE_HOME:-$HOME/.cache}"/gitstatus + ``` ### How do I install Powerlevel10k on a machine without Internet access? |