30 Jan

apt-get dist-upgrade for Mac freeware bundles

Tuesday January 30th 2007, 9:08 pm
Tags:

Fantastic widget which checks installed freeware bundles in /Applications and ~/Applications for new versions, completely automatic. A must have!

0 Comments

23 Jan

Wintererwachen

Tuesday January 23rd 2007, 8:28 am
Tags: ,
0 Comments

22 Jan

Thumbnail tabs

Monday January 22nd 2007, 12:10 pm
Tags: , ,

A great extension for Firefox: Tab Sidebar. It uses the Canvas HTML element of Gecko to draw the thumbnails without any noticeable delay.

It’s nearly as good as Stand, a plugin for Safari, visible on the right. After getting used to the tabs on the left instead at the top, selecting the right tab visually is so much easier, and even more much more suitable for wide screen displays.

0 Comments

19 Jan

Terminal.app catching up, finally

Friday January 19th 2007, 11:55 am
Tags:

That’s really good news:

Apple actually has itemized a few of changes to Leopard from the last seed, including: [...] Tab support in Terminal [...] (from MacRumors)

Was looking for another terminal app some time ago, but didn’t find anything which properly integrates into OSX and is fast enough. So another reason to look forward to Leopard in march.

0 Comments

17 Jan

Creating Cocoa app bundles from fink programs

Wednesday January 17th 2007, 3:20 pm
Tags: ,

With MacOSX the Finder and the BSD/fink subsystem have a different understanding what an application really is. If you want to launch for example “gv” from Firefox to view postscript files, it is not enough to select /sw/bin/gv in the Firefox open dialog. What you have to do, is to create an .app bundle from a fink shell script. Platypus makes that quite easy:

  • Installl and launch Platypus
  • Set intepreter to /bin/sh
  • Click on the “New” button below the “Script Path”.
  • Click on “Edit” and write something like:
#!/bin/sh
shift 1
export DISPLAY=:0.0
. /sw/bin/init.sh
exec /sw/bin/gv "$@"

It’s important that you write it, not only copy it from here. Copy&paste creates ^M (DOS like?) line ending such that the script is not runnable afterwards.

  • Select “Is droppable”
  • Change the “App Name” to something sensible, e.g. “gv”
  • Click on “Create”
  • Store the gv.app in ~/Applications.

Now you can open a postscript file in Firefox and select the new gv.app in the “Open with” dialog. Voila: “shell applications” in your Mac programs.

0 Comments

16 Jan

No comment

Tuesday January 16th 2007, 3:07 pm
Tags: , ,
If the phone does run a version of OS X (regardless of how stripped down it is) then it should still be running on UNIX. Either that or they’ve made an alternate version without the UNIX base so it’s not really OS X anymore. My point is, if it has UNIX base, will we be able to make use of it? Could we use the command line? If we can, then will we be able to use shell scripts? It’s a work around for the software issue, not a great one for most users but it could still be useful. (from here)
0 Comments