From f44ff0c0723131a3e3ad291d55e8b949729533a4 Mon Sep 17 00:00:00 2001 From: jamesm-sitegen Date: Mon, 28 Nov 2011 22:28:10 +1100 Subject: [PATCH] Made it more clear that this fork isn't like the other forks, It's patched for system-wide; Not for a single-user install! (however that may come at a later date) --- README.textile | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/README.textile b/README.textile index 38a3f0fe0..6835f431e 100644 --- a/README.textile +++ b/README.textile @@ -1,4 +1,5 @@ -@NOTE: This fork is specifically for Archlinux.@ +**NOTE: This fork is specifically for Archlinux and has been patched for a system-wide install; Don't attempt to install to ~/.oh-my-zsh!! There will be a user specifc wrapper later on, but for now. system wide or use robby's official master ( not optimized for arch nor as patched; He is too lazy to merge some pull requests. )** +**This documentation/wiki isn't finished nor official!** A handful of functions, auto-complete helpers, and stuff that makes you shout... @@ -12,19 +13,19 @@ h3. Installing using cower @cower -dd oh-my-zsh-git@ -h3. The manual way. ( unrecommended, as it isn't complete ) +h4. Enableing for a user. -1. Clone the repository +The user must first have zsh set as their shell. +@[[ $SHELL == '/bin/zsh' ]] && su -c'chsh -s $(which zsh) '@ - @git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh@ +For each user who wishes to use oh-my-zsh they must append/copy the user.zsh-template to their .zshrc. +@>$HOME/.zshrc@ +If the above command doesn't run please try.. +@cat /usr/share/oh-my-zsh/templates/user.zsh-template>>$HOME/.zshrc@ +If that doesn't work and you don't have anything in your .zshrc file. simply copy the file accross. -2. Create a new zsh config by copying the zsh template we've provided. - - *NOTE*: If you already have a ~/.zshrc file, you should back it up. @cp ~/.zshrc ~/.zshrc.orig@ in case you want to go back to your original settings. - - @cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc@ - -3. Start / restart zsh (open a new terminal is easy enough...) +The .zshrc file must be executable! +@chmod +x .zshrc@ h3. Problems?