Tagged Questions
The geektool tag has no wiki summary.
1
vote
3answers
557 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
1answer
65 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
48 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
271 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
114 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 ...
0
votes
3answers
325 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 ...