aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorromkatv <roman.perepelitsa@gmail.com>2019-07-23 11:48:56 +0300
committerromkatv <roman.perepelitsa@gmail.com>2019-07-23 11:48:56 +0300
commitbe4899346933bd03e9068b826ab83d9d66621baa (patch)
tree3b54ce6ee678cd7047b9aaab5ffaf574d3622fc8
parentdb70d1a59fade013c8e87fe88306b0e4f51d39cf (diff)
make docker commands the same as the official installation instructions; otherwise people might copy them and use instead of the normal install
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 131bde65..e9cea6fc 100644
--- a/README.md
+++ b/README.md
@@ -123,8 +123,9 @@ the theme. Once you exit zsh, the image is deleted.
```zsh
docker run -e LANG=C.UTF-8 -e LC_ALL=C.UTF-8 -e TERM -it --rm ubuntu bash -uexc '
cd && apt update && apt install -y zsh git
- git clone --depth 1 https://github.com/romkatv/powerlevel10k.git
- echo "source ~/powerlevel10k/config/p10k-lean.zsh" >>~/.zshrc
+ git clone https://github.com/romkatv/powerlevel10k.git
+ cp ~/powerlevel10k/config/p10k-lean.zsh ~/
+ echo "source ~/p10k-lean.zsh" >>~/.zshrc
echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc
cd ~/powerlevel10k
exec zsh'