Archive for the 'Software' Category

Page 4 of 4

Random Color Terminal

I’ve always wanted something like this. Daniel Jalkut of the Red Sweater Blog has created an AppleScript to randomize the color scheme of the terminal. Just drop it in ~/Library/Scripts/Applications/Terminal and it will show up in the script menu under “Terminal Scripts.” Click on it until you find a color scheme that pleases you.

There are two cool hacks that I came up with for this script. Both involve changing ~/.bash_profile (or the startup script for whatever shell that you use). If you don’t have a file named .bash_profile in your home directory, then create one. AppleScripts can be invoked from the command line by using the osascript command, and we can use this to our advantage in two ways.

  1. Every time we start up a new terminal, randomize the color. Simply add the line

    osascript ~/Library/Scripts/Applications/
    Terminal/RandomColorTerminal.scpt

    somewhere in your .bash_profile (all on one line).

  2. Set an alias to the above command so that we can change the color very quickly without needing to navigate to the script menu with the mouse. To do this, add the line

    alias newcol='osascript ~/Library/Scripts/Applications/
    Terminal/RandomColorTerminal.scpt'

    to .bash_profile (all on one line). Now, whenever you type newcol at the command line, you will get a new color scheme.

Mac Developers are Awesome

TextMate IconTextMate, the best Mac text editor out there, received an update a few days ago, and it is now Halloween compatible. Check out its awesome new icon at right. There are at least two other thematic surprises hidden within the application that I won’t spoil… ;)

Update: Halloween is over, and TextMate has reverted back to the normal theme. Apparently some people didn’t like the implications of the picture. They probably still live with their parents. Luckily the icon is still available.

(0)

Tangerine

If you are a Mac user, check out Tangerine, a beta app from the Potion Factory (sounds like something out of Harry Potter, right?). By going through your iTunes music library and analyzing all of the songs to determine their BPM (beats per minute) and beat intensity, Tangerine hopes to simplify the creation of playlists for all your different moods. This is something that I am notoriously bad at. And even if you have meticulously organized playlists, you’ve gotta love the orange theme that this app is built around.

Tangerine Screenshot