From 55a4e476f78f37204af9dfc0290a92e52cf881b1 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 30 Sep 2024 15:07:46 -0400 Subject: [PATCH] Update README to v1.2.1 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fb6b614..82cb0a4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ One line installation: add the following line in your `Dockerfile`: ```Dockerfile # Default powerline10k theme, no plugins installed -RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0/zsh-in-docker.sh)" +RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.1/zsh-in-docker.sh)" ``` #### Optional arguments: @@ -35,7 +35,7 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/ For example, if you want to enable [case sensitive completion](https://stackoverflow.com/a/28021691): ```Dockerfile - RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0/zsh-in-docker.sh)" -- \ + RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.1/zsh-in-docker.sh)" -- \ -a 'CASE_SENSITIVE="true"' ``` @@ -48,13 +48,13 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/ ```Dockerfile # Uses "robbyrussell" theme (original Oh My Zsh theme), with no plugins -RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0/zsh-in-docker.sh)" -- \ +RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.1/zsh-in-docker.sh)" -- \ -t robbyrussell ``` ```Dockerfile # Uses "git", "ssh-agent" and "history-substring-search" bundled plugins -RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0/zsh-in-docker.sh)" -- \ +RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.1/zsh-in-docker.sh)" -- \ -p git -p ssh-agent -p 'history-substring-search' \ -a 'bindkey "\$terminfo[kcuu1]" history-substring-search-up' \ -a 'bindkey "\$terminfo[kcud1]" history-substring-search-down' @@ -63,7 +63,7 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/ ```Dockerfile # Uses "Spaceship" theme with some customization. Uses some bundled plugins and installs some more from github -RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0/zsh-in-docker.sh)" -- \ +RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.1/zsh-in-docker.sh)" -- \ -t https://github.com/denysdovhan/spaceship-prompt \ -a 'SPACESHIP_PROMPT_ADD_NEWLINE="false"' \ -a 'SPACESHIP_PROMPT_SEPARATE_LINE="false"' \