#### How to use jj's startup config: #### ## 1) Backup your exisiting startup files: cd mv .profile .profile-old mv .bashrc .bashrc-old mv .zshrc .zshrc-old mv .alias .alias-old mv .inputrc .inputrc-old # The commands will fail if one of the files does not exist # (this is not a problem). # 2) Download the files # .profile, .jjzshrc, .jjbashrc, .inputrc, # .jjtermcolors, .jjdircolors, .alias # to your home directory. # URL is http://www.jjj.de/shell/ # Make sure the files are not renamed by stupid browsers. # Make sure the files are in your home directory: cd ls -l .profile .jjzshrc .jjbashrc .jjtermcolors .jjdircolors .alias .inputrc ## 3) Now create the following softlinks: cd ln -sv .profile .bashrc ln -sv .profile .zshrc ## 4) To activate the new settings, read .profile in current shell: cd source .profile ls -l # The output should have colors different from your old ones. ## 5) If something unwanted happens you can restore your old config: # Keep backups of jj's files: cd mv .profile .profile-jj mv .bashrc .bashrc-jj mv .zshrc .zshrc-jj mv .alias .alias-jj mv .inputrc .inputrc-jj # Restore old config: cd mv .profile-old .profile mv .bashrc-old .bashrc mv .zshrc-old .zshrc mv .alias-old .alias mv .inputrc-old .inputrc # .. and reactivate old settings: source .profile #### End of file. ####