Questions tagged [growlnotify]

27 questions
10
votes
2 answers

how to start growl via the command line

I have a bash script that uses growlnotify to send notifications. However, growlnotify doesn't work if Growl isn't already running, and it won't auto start Growl if it needs it, either. So I want to be able to check if Growl is running, and then…
nightfire
  • 815
  • 2
  • 12
  • 22
7
votes
2 answers

Duplicate text in summary and detail

When the email address is invalid the message displayed is "Invalid email.Invalid email.". I know that the message has two parts: summary and a details. I need both of these, but I want to have different info in each. How can I change the message to…
Seitaridis
  • 4,459
  • 9
  • 53
  • 85
5
votes
2 answers

Unable to run growl notifications and gem growl_notify throws errors

I am unable to get growl notifications when i run $guard Do i need any particular version for growl_notify? Growl version = 1.2 Here is my gem file. gem 'rails', '3.1.3' gem 'sqlite3' group :development, :test do gem 'rspec-rails' gem…
JP.
  • 1,035
  • 2
  • 17
  • 39
5
votes
2 answers

GrowlNotify 1.3 + Growl 1.3.1 for Lion: error

I'm working on Mac OS X 10.7.2 with Growl 1.3.1 for Lion. I installed growlnotify version 1.3 and executed growlnotify -a Emacs.app -m "foo" in the terminal. I obtain: 2011-12-11 11:26:39.349 growlnotify[86152:707]
Marius Hofert
  • 6,546
  • 10
  • 48
  • 102
4
votes
2 answers

Launch app on click of a growl notification

Using bash/shell scripting I have growlnotify telling me when there was a failed login attempt, and displaying the a picture of whoever was sitting in front of the computer in a growl notification. Is there a way that I can use growlnotify to…
Trcx
  • 4,164
  • 6
  • 30
  • 30
2
votes
2 answers

How do I get growlnotify to show a multiple-line message from the command line?

Using growlnotify how can I display multiple lines of text from the command line? Slash-n - \n - like this doesn't seem to work: growlnotify -t title -m "messageline1\nmessage2" I just get a message messageline1\nmessage2
Richieliu
  • 23
  • 3
2
votes
2 answers

how to stick an element on page (position: fixed) after it has been displayed?

I'm developing a growl like notifications for my site, currently it's like this: HTML:
CSS: #growls { position: fixed; right: 20px; bottom: 20px; } .growl { display: none; } JS: function growl(message) { if (growls <…
2
votes
2 answers

Adding Growl notifications after Rake tasks are finished

Is there a way to add Growl notifications to the end of all Rake tasks? I initially thought of creating a task that Growls, and adding it as a dependency to tasks I want alerts from, but realized the dependencies get run before the task begins. Is…
funkymunky
  • 1,811
  • 3
  • 20
  • 22
1
vote
2 answers

Show notification on parent window once modal iframe js closed

I have a form in a modal iframe window that i create using fancybox. Once the user submits the form then upon success i want to close the modal window and update a div on the parent window with a 'Saved Successfully' message. How do i do this? I…
Kavin Mehta
  • 810
  • 10
  • 18
1
vote
3 answers

is growl_notify only for macs? Is there a Window's Alternative

here is the gem: https://github.com/visionmedia/growl How can i tell if this a Mac only app?
E.E.33
  • 2,013
  • 3
  • 22
  • 34
1
vote
1 answer

Inline styling of growl notifications

I'm using a script to call growlnotify to display some time tracking data: current project name, time elapsed, a list of available projects (together with time spent on them on the current day and keyboards shortcuts to switch between projects). I…
Mattias Arro
  • 1,102
  • 11
  • 16
1
vote
2 answers

Rails autotest with ubuntu and remote growl

I am using ubuntu to develop my rails apps in a virtual machine and I want to send growl notifications in my windows which is in a LAN (growl exists in windows also). I wrote a simple script to send notifications from ubuntu to windows remotely and…
JohnDel
  • 2,092
  • 8
  • 35
  • 64
1
vote
2 answers

NLog with Growl for Windows target

I am trying to use the target which can be found http://ryanfarley.com/blog/archive/2010/05/06/announcing-the-growl-for-windows-target-for-nlog.aspx. I have the nlog framework working as before I add the config lines for growl all works fine. The…
Jonathan Stanton
  • 2,531
  • 1
  • 28
  • 35
1
vote
2 answers

getting global name not defined error

i have the following class class notify(): def __init__(self,server="localhost", port=23053): self.host = server self.port = port register = gntp.GNTPRegister() register.add_header('Application-Name',"SVN…
nashr rafeeg
  • 779
  • 3
  • 12
  • 31
1
vote
0 answers

Determine build success/fail in Flash Builder

I'm trying to add a post-build task to my Flex project in Flash Builder 4.6. Specifically, I want to send a Growl notification via growlnotify. I can do this easily by going to → Properties → Builders and adding it there. However, the…
istrasci
  • 1,331
  • 1
  • 18
  • 40
1
2