Tagged Questions
2
votes
2answers
49 views
Create a automator application able to launch and quit from dock
I have a shell command thats runs endlessly, until you stop it using Control-C. When I run it from the Terminal, it goes something like:
$ /abspath/to/my-command
Command is running ...
Use Control-C ...
1
vote
2answers
140 views
How to Run Shell Script upon Application Launch?
Not sure if this belongs here or on SuperUser, but it's Mac specific, so I'll go with here.
I wrote a Ruby script that edits TextMate's global properties file and changes the theme based on the time ...
0
votes
1answer
117 views
How to use automater to run mongo db and node.js app on startup
I'm trying to use Automater(first attempt of using this software) to create a sequence that will automatically run ./usr/mongo/bin/mongod and ./usr/mongo/bin/mongo then run my node.js server app at ...
0
votes
0answers
193 views
Mac OS X Lion xterm service behaves differently between Automator and keyboard shortcut
I created the following "Run Shell Script" service in Automator under Mac OS X Lion 10.7.4:
export DISPLAY=:0
/usr/X11/bin/xterm -title "Kevin's Xterm" -sb -sl 500000 -geometry 150x25 &
and ...
0
votes
0answers
114 views
How to toggle closeViewZoomFollowsFocus in com.apple.universalaccess via shell script with instant activation?
I created a Service with Automator on a Mac running "Lion 10.7.3". The Service toggles via a shell script the visibility of hidden files in the Finder and works like a charm. Here's the script:
...
1
vote
2answers
1k views
How to dim (and un-dim) display in automator
For those that are interested in the final script you can get it here
original question
I am trying to make a alarmclock script to wake me up. but I can't figure out how to change the screen ...
0
votes
2answers
4k views
Automator choose finder folder and run shell script
I've got a simple shell script that I would like to incorporate into an automator workflow. I just need to double click the application , pick a finder folder and run the command. At the moment it is ...