A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| /* iOS Browser Bookmarklets to launch other apps and stuff */ | |
| /* backing up my "Open In" bookmarks */ | |
| // note iOS6 requires some changes to these | |
| // Post with Twitterrific MAC OSX fancy (probably iOS too) (title of page and URL) | |
| javascript:window.location='twitterrific:///post?message='+encodeURIComponent('"'+document.title.toString()+'"')+'%20'+encodeURIComponent(location.href.toString()) | |
| // Google last 2 yrs from clean URL (ver 1) | |
| javascript:window.location.href=window.location.href+'&tbs=qdr:y2'; |
| REMOTE REQUESTS: | |
| com.sadun.airflick | |
| RequestType := show-photo | play-media | screenshot | |
| MediaLocation := | |
| <url string> | <local file path string> | <array of local file path strings for slideshow> | |
| Rotation := 0 | 1 | 2 | 3 (0 ^, 1 <, 2 v, 3 >) | |
| Transition := SlideRight | Dissolve | |
| SlideDuration := 2 | 3 | 5 | 8 | 10 (Use strings. Incorrect durations default to 5) | |
| // Single Slide |
| #!/bin/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
| #!/bin/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
| These two files should help you to import passwords from mac OS X keychains to 1password. | |
| Assumptions: | |
| 1) You have some experience with scripting/are a power-user. These scripts worked for me | |
| but they haven't been extensively tested and if they don't work, you're on your own! | |
| Please read this whole document before starting this process. If any of it seems | |
| incomprehensible/frightening/over your head please do not use these scripts. You will | |
| probably do something Very Bad and I wouldn't want that. | |
| 2) You have ruby 1.9.2 installed on your machine. This comes as standard with Lion, previous | |
| versions of OS X may have earlier versions of ruby, which *may* work, but then again, they |
| #!/usr/bin/env ruby | |
| # | |
| # Usage: | |
| # security dump-keychain -d login.keychain > keychain_logins.txt | |
| # # Lots of clicking 'Always Allow', or just 'Allow', until it's done... |
| These two files should help you to import passwords from mac OS X keychains to 1password. | |
| Assumptions: | |
| 1) You have some experience with scripting/are a power-user. These scripts worked for me | |
| but they haven't been extensively tested and if they don't work, you're on your own! | |
| Please read this whole document before starting this process. If any of it seems | |
| incomprehensible/frightening/over your head please do not use these scripts. You will | |
| probably do something Very Bad and I wouldn't want that. | |
| 2) You have ruby 1.9.2 installed on your machine. This comes as standard with Lion, previous | |
| versions of OS X may have earlier versions of ruby, which *may* work, but then again, they |