diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-10-04 09:00:06 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-10-04 09:00:06 +0300 |
commit | 2862e5f3950e449bc5cbffd00dd43a8806582ccb (patch) | |
tree | c53504edf559eb9e59ed46d34f4a7623973cf5c2 | |
parent | 6f11dca7d36415479ff26c7e37efed83dc13df9e (diff) |
replace ubuntu with archlinux in the docker command; it's faster to install
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -155,9 +155,9 @@ Try Powerlevel10k in Docker. You can safely make any changes to the file system 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 https://github.com/romkatv/powerlevel10k.git +docker run -e LANG=en_US.utf8 -e TERM -it --rm archlinux/base bash -uexc ' + pacman -Sy --noconfirm zsh git + git clone https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc cd ~/powerlevel10k exec zsh' |