GeekTool is an application for Mac OS 10.6+. It lets you display various kinds of information on your desktop via 3 default plug-ins:

learn more… | top users | synonyms

0
votes
1answer
35 views

Get image from google by id

I have an image on google (just google weather for [location]) and I would like to download it and display it through geektool. I have seen people use curl for yahoo weather before, but never for ...
0
votes
0answers
34 views

Running Python script via Geektool on Mountain Lion fails when importing BeautifulSoup

I have a python script that I run through GeekTool to get some output on my desktop. It works fine in Geektool v3.0.1 on Snow Leopard, but fails in Mountain Lion. I built a small demo script to find ...
0
votes
1answer
30 views

GeekTool (UNIX) counter leading zeros

I'm trying to make a timing counter for a running race through GeekTool on Mac (UNIX based) and have the following: expr `date -j -f "%d/%m/%Y %H:%M:%S" "05/09/2012 07:41:15" "+%s"` - `date "+%s"` | ...
1
vote
2answers
56 views

Create newline with awk Command?

Im trying to edit a script in geek tool (mac app for desktop widgets), could someone help me make this statement only print out 10 or so words per line? curl -s ...
1
vote
0answers
68 views

Geektool and TextMate Error

I am giving myself little projects during the winter break, and am trying to write little geektool scripts I can use for my desktop. I wrote this for ruby and it works in terminal, but when I run it ...
1
vote
1answer
223 views

Get the Date of an Email via AppleScript

I am currently trying to customize an AppleScript that is reading the unread Mails in the Inbox. That basically works fine except the fact, that I can#T manage to get the date of the mails. After ...
1
vote
1answer
222 views

Resize Image with AppleScript

I've encountered a little problem when I wanted to modify a ApplScript, that I am using to get my current iTunes Coverinto a image file that I display on my Desktop via GeekTool. Now I wanted also to ...
0
votes
0answers
75 views

Geektool and Color Gem

Hi today i created the following script which works well in Terminal on OS X: ruby require '/term/ansicolor' include Term::ANSIColor class String # colorization def colorize(color_code) ...
0
votes
0answers
93 views

Geektool and nokogiri = No Output

I have written a ruby script to grab some weather info for my desktop, ot works well in terminal but added to Geektool, no output and if i turn on Status Image it is red as FAILURE, whats wrong? My ...
0
votes
1answer
170 views

How to display an image from a file with a Base64 string with GeekTool?

My base64 string file is on http://domain.com/image.txt ...
-1
votes
1answer
93 views

how to know which apps will be started automatically when i boot android device? [closed]

there are lots of apps which will be started even i don't want them to start once i power on my android device. so is there any method which can find all the apps that will be started automatically ...
1
vote
1answer
199 views

Geektool can't run imagemagick commands

I recently installed imagemagick over macports to automatically crop images, but while the command works in terminal, it doesn't work in geektool. I tried using automator, but it doesn't work there ...
0
votes
1answer
103 views

Capturing only one <div> of website client side

I'm trying to get some stats from my Halo character onto my desktop. Right now I have a geektool script that turns a service record page into a .png, and then puts that on my desktop. However, I would ...
3
votes
1answer
204 views

ANSI Escape Sequences Disappear When Running a Ruby Script to Output to Geektool

I am trying to use the OS X app GeekTool to print colorized text output onto my Desktop. GeekTool allows you to place little windows called "geeklets" onto the Desktop. One kind of Geeklet displays ...
1
vote
1answer
162 views

Display output of ruby script requiring Mechanize on MacOS Desktop using GeekTools?

I have written a working ruby script using mechanize for fetching my Stackoverflow reputation and badges Twitter tweets and followers and printing the output to screen. I run this ...
0
votes
2answers
115 views

SED wildcard selects too large range

Working with Sed on Mac osx 10.6.8 creating a .command file with Text Editor which will be executed in Geektool. I have a string MYSTRING and try to remove the link-tags from it. But when using the ...
0
votes
1answer
142 views

Geektool and returning Applescript

I have an Applescript script that is set to repeat every 10 seconds with Geektool. I have returns at the end of each handler that let me know what's going on, but that affords me little chance to see ...
0
votes
0answers
200 views

Show todos (Things.app) on desktop with geektool?

I'm using the things-rb ruby gem, and would like I be able to show my todos on my desktop using geek tool. Running typical bash commands work fine, but when I use 'things today', geektool doesn't ...
0
votes
1answer
1k views

How to run Ruby scripts in Geektool?

I want to run a Ruby script in Geektool that refreshes every 3 hours (so I set the refresh rate to 10,800 seconds) and the shell command in Geektool has this code in it: ruby "/file.rb" The file is ...
0
votes
1answer
211 views

Parse calendar (ICS) with AppleScript

Iam having a hard time cracking this. I have read an ICS file into AppleScript and I need to parse it. This is my code set calURL to "https://url.to.ics" set calenderData to do shell script "curl " ...
0
votes
1answer
784 views

Need help using GeekTool with system_profiler and networksetup

Aloha everyone, I have created a small bash shell script which I wanted to use with GeekTool, but I have experienced different results using the same script on my iMac (11,1) and my MacBook Pro ...
0
votes
3answers
181 views

Mac OS X options for running a Ruby file in the background repeatedly

I wrote a Ruby script that I want to run in the background repeatedly as long as the computer is running. I was planning on using GeekTool to get this .rb file to run in the background, but I'm ...
1
vote
3answers
730 views

Ruby, Mac, Geektool question, file access rights?

I have a Ruby script that I built in TextMate and can successfully run in TextMate. I can also successfully run this script straight from the terminal. The script has this chunk of code in it: # Get ...
0
votes
2answers
480 views

Ruby system command not working outside console

I am trying to run growlnotify from inside a ruby script. The command I am using is this system("growlnotify Test -m message"). If I use the terminal to execute the script it works fine. If I use ...