From 9e517db7bb31c43ad0a46e19ed51795d4e9374a9 Mon Sep 17 00:00:00 2001 From: Kalle Bronsen Date: Tue, 22 May 2012 09:01:41 +0200 Subject: [PATCH 1/5] added new alias 'acsh' for 'apt-cache show' --- plugins/debian/debian.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/debian/debian.plugin.zsh b/plugins/debian/debian.plugin.zsh index 16a5d54ca..506fce7c0 100644 --- a/plugins/debian/debian.plugin.zsh +++ b/plugins/debian/debian.plugin.zsh @@ -25,6 +25,7 @@ alias at='aptitude' # Some self-explanatory aliases alias acs="apt-cache search" +alias acsh="apt-cache show" alias aps='aptitude search' alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \ --no-gui --disable-columns search" # search package From f7404795384003536224dcc04b260404a6edad7b Mon Sep 17 00:00:00 2001 From: Kalle Bronsen Date: Fri, 8 Jun 2012 12:32:49 +0200 Subject: [PATCH 2/5] changed from robbyrussel to bronsen Still, robbyrussel's repo is the one I look up(stream) to ;) --- README.textile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.textile b/README.textile index bf6776665..787e3160b 100644 --- a/README.textile +++ b/README.textile @@ -12,18 +12,18 @@ You can install this via the command line with either `curl` or `wget`. h4. via `curl` -@curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh@ +@curl -L https://github.com/bronsen/oh-my-zsh/raw/master/tools/install.sh | sh@ h4. via `wget` -@wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@ +@wget --no-check-certificate https://github.com/bronsen/oh-my-zsh/raw/master/tools/install.sh -O - | sh@ h3. The manual way 1. Clone the repository - @git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh@ + @git clone git://github.com/bronsen/oh-my-zsh.git ~/.oh-my-zsh@ 2. Create a new zsh config by copying the zsh template we've provided. @@ -46,7 +46,7 @@ h2. Usage * enable the plugins you want in your @~/.zshrc@ (take a look at @plugins/@ to see what's possible) ** example: @plugins=(git osx ruby)@ * Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@. -** Take a look at the "current themes":https://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with _Oh My Zsh_. +** Take a look at the "current themes":https://wiki.github.com/bronsen/oh-my-zsh/themes that come bundled with _Oh My Zsh_. * much much more... take a look at @lib/@ what _Oh My Zsh_ offers... h2. Useful From 1bdf0cefc01bc2d72330e025e5d133bba4812b8a Mon Sep 17 00:00:00 2001 From: Kalle Bronsen Date: Mon, 11 Jun 2012 15:00:09 +0200 Subject: [PATCH 3/5] use subshell to determine location of zsh On debian and ubuntu zsh is found in /usr/bin/ instead of /bin/ --- README.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.textile b/README.textile index bf6776665..c7319af92 100644 --- a/README.textile +++ b/README.textile @@ -33,7 +33,7 @@ h3. The manual way 3. Set zsh as your default shell: - @chsh -s /bin/zsh@ + @chsh -s $(which zsh)@ 4. Start / restart zsh (open a new terminal is easy enough...) From 4c9a8174b2345805088a31e01bcd244cc03e8557 Mon Sep 17 00:00:00 2001 From: Kalle Bronsen Date: Mon, 11 Jun 2012 15:00:09 +0200 Subject: [PATCH 4/5] use subshell to determine location of zsh On debian and ubuntu zsh is found in /usr/bin/ instead of /bin/ --- README.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.textile b/README.textile index 4b3e6abc9..2e7895835 100644 --- a/README.textile +++ b/README.textile @@ -34,7 +34,7 @@ h3. The manual way 3. Set zsh as your default shell: - @chsh -s /bin/zsh@ + @chsh -s $(which zsh)@ 4. Start / restart zsh (open a new terminal is easy enough...) From ecdd187dd9e8a86a3d998542702becf3b267a410 Mon Sep 17 00:00:00 2001 From: Kalle Bronsen Date: Mon, 11 Jun 2012 15:00:09 +0200 Subject: [PATCH 5/5] use subshell to determine location of zsh On debian and ubuntu zsh is found in /usr/bin/ instead of /bin/ --- README.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.textile b/README.textile index 4b3e6abc9..2e7895835 100644 --- a/README.textile +++ b/README.textile @@ -34,7 +34,7 @@ h3. The manual way 3. Set zsh as your default shell: - @chsh -s /bin/zsh@ + @chsh -s $(which zsh)@ 4. Start / restart zsh (open a new terminal is easy enough...)