1. 09 Oct, 2010 1 commit
    • Brandon Philips's avatar
      functions: fix title() to not match any $TERM · aab235f6
      Brandon Philips authored
      
      
      On my linux virtual terminals, where TERM="linux", I was getting
      annoying output that was messing up my prompt.
      
      It turns out the title function was always matching on the elif
      statement for xterm/rxvt no matter what and the linux vt doesn't know
      what to do with the title special control sequence and thus was printing
      out garbage.
      
      Through experimentation I figured out that the || inside of the [[ ]]
      did not work:
      
      export TERM=linux
      $ if [[ $TERM =~ "^xterm" || $TERM == "rxvt" ]]; then echo $TERM; fi
      linux
      
      $ if [[ $TERM =~ "^xterm" ]] || [[ $TERM == "rxvt" ]]; then echo $TERM; fi
      Signed-off-by: default avatarBrandon Philips <brandon@ifup.org>
      
      openSUSE running zsh 4.3.10
      aab235f6
  2. 01 Oct, 2010 14 commits
  3. 27 Sep, 2010 1 commit
  4. 26 Sep, 2010 3 commits
  5. 25 Sep, 2010 2 commits
    • Jake Bell's avatar
      Added theunraveler theme. · 6764e503
      Jake Bell authored
      6764e503
    • gwjo's avatar
      ssh-agent module · 62cea310
      gwjo authored
      Implement a simple module that automatically launches the ssh-agent when you login and
      adds your default key.
      
      Useful for anyone that does remote work and thus doesn't have access to a keychain tool.
      62cea310
  6. 21 Sep, 2010 1 commit
  7. 20 Sep, 2010 8 commits
  8. 10 Sep, 2010 2 commits
  9. 01 Sep, 2010 5 commits
  10. 30 Aug, 2010 1 commit
  11. 24 Aug, 2010 1 commit
  12. 20 Aug, 2010 1 commit