Tagged Questions
Growl is a global notification system for the Mac OS X and Windows operating systems.
17
votes
8answers
2k views
Cross-platform desktop notifier in Python
I am looking for Growl-like, Windows balloon-tip-like notifications library in Python. Imagine writing code like:
>>> import desktopnotifier as dn
>>> dn.notify('Title', 'Long ...
15
votes
5answers
2k views
How to send real growl messages with javascript?
Is it possible to post growl notifications to a user's computer, from a web application, using javascript? This will be only on an intranet application so security is not a major concern. Additionally ...
7
votes
3answers
734 views
What are the code sign entitlement keys needed for using Growl on Lion?
Submission to the Mac App Store since Lion requires all apps to specify code sign entitlements. As with Growl it was never clear what entitlements I should specify and some google-fu gives no answer ...
4
votes
2answers
267 views
Rails 3.1.1 Guard-rspec cannot run due to Growl errors: OSERROR: -10000 MESSAGE: Apple event handler failed
I have been running Guard for RSPEC and using the growl_notify gem for a while now (2-3 months), but now I cannot get guard to run in any of my Rails 3.1.1 projects. I've done some research on the ...
4
votes
2answers
354 views
How do i remove the ppc section in growl framework?
Now i add growl notification support into my app ,when i submitted it to mac app store with organizer,it says that
"
Unsupported Architecture - Application executables may support either or both of ...
3
votes
2answers
267 views
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 ...
3
votes
2answers
685 views
Monitoring Spotify track change in Applescript?
I'm trying to figure out the best way via Spotify's Applescript library to detect a track change. So far, I've tried checking player position -- if it equals 0 it is a new track and the Growl ...
3
votes
1answer
364 views
Can't get Growl notifications working with growl-rspec gem
I have the "guard-rspec" gem installed in my gemfile:
group :development do
gem "guard-rspec"
gem "growl"
end
When I run guard, it executes my rspec unit tests and outputs this message at the ...
3
votes
1answer
217 views
how to growl from php
I am trying to send growl notification from php. The receiving computer is OSX and I am able to receive local notification and notifications from ruby script from different computer. No password is ...
3
votes
0answers
199 views
How to Send RubyMine Notifications to Growl?
I'm trying to figure out how to get RubyMine's console to send messages to growl. Specifically, since I run Rspec & Spork through RubyMine, I'd like to get Growl notifications of how many tests ...
3
votes
3answers
2k views
push-style notifications simliar to Facebook with Rails and jQuery
I want to create a push notification system like Facebook. Whenever Facebook wants to tell you something (like that someone commented on a post, tagged you, etc), you'll see a small notification show ...
3
votes
2answers
594 views
What “growl” type notification windows are available for WPF (windows that appear and fade after X seconds)?
I wanted to know if there are any good "growl" type notification windows available as open source or guided tutorials for WPF applications. I'm looking for a window that can appear when users save ...
3
votes
0answers
291 views
Growl Python binding with Click feedback?
I'm trying to use the Growl Python bindings (Growl.py v0.7 from the Growl repository) to write a small application. One of the features that's currently missing is the click notification sent to ...
3
votes
2answers
1k views
Equivalent to Android's Toast or Mac OSX Growl in Java Swing?
Looking for a means of displaying transient, non-modal dialogs in a Swing application. In other words, I'd like to pop up a semi-transparent box with some text in it that can be immediately ...
3
votes
1answer
518 views
Is it possible to send a growl message to another user on the same computer on OSX?
My app currently uses growl to send the occasional message to the user, which works great when I am developing it. But once it is run as a in production, as a system-level Launch Daemon under a ...
2
votes
1answer
68 views
What methods can I use to growl from the command line in OS X Lion?
In OS X Snow Leopard I used the growlnotify utility that was included in the Growl 1.2 SDK. I've downloaded the SDK for Growl 1.3 but I don't see any growlnotify utility included (am I missing it?)
...
2
votes
1answer
116 views
Python UDP server on ubuntu not working
I am trying to run this script on a ubuntu 11.04 box: http://taoofmac.com/space/projects/ReGrowl
Its a small script bound to UDP port 9887 designed to relay Growl packets.
I can send the script ...
2
votes
1answer
262 views
Growl-WithInstaller.framework keep failing on Xcode4
These are my steps
I downloaded the latest Growl sdk and put the Growl-WithInstaller.framework in the /Frameworks folder.
Drag & drop Grow-WithInstaller.framework directory to "Framework" in ...
2
votes
1answer
234 views
How do you write a menu bar app in OS X
I want something similar to the gmail notifier.
The app will need check a web page periodically and send notifications to growl.
2
votes
1answer
154 views
2
votes
2answers
4k views
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 ...
2
votes
4answers
2k views
Growl like notifications in Flex
Has anyone heard of a library to achieve such an effect in flex apps ?
Otherwise it just be a simple panel with some skinning, fading effect and a timer.
1
vote
1answer
59 views
Growl Notification - Won't fire notification using framework (Mist)
I'm working on a small wrapper for the Growl 1.3.1 SDK. More specifically, I'd like to package Growl in my application so that even if the user doesn't have Growl, they will still be able to get ...
1
vote
1answer
67 views
EXC_BAD_INSTRUCTION after removing Linked Framework?
I was previously linking against the Growl framework in my application, but it has since been removed. It was deleted from the project, removed from all the Build Phases, and no use of the ...
1
vote
0answers
131 views
autotest, growl, and Ruby on Rails 3 Tutorial
I'm running through Ruby on Rails 3 tutorial, and have been having difficulties with the autotest. Many of them have been handled, but the solutions only seem to bring up subsequent issues.
I am ...
1
vote
1answer
40 views
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 ...
1
vote
2answers
222 views
Growl with guard and spork fails silently on OS 10.6.6
I get no Growl notifications when tests pass or fail. I've gone through all the setup guides I can find.
Details
I run guard and it starts Spork fine:
Using RSpec
Preloading Rails environment
...
1
vote
2answers
66 views
Bash getting stuck when printing special character
I have this function in my .profile, which creates a growl notification using iTerm2:
function growl()
{
echo -n -e $'\e]9;'"$@"'\007'
}
But, if I do declare -f growl, Bash will become stuck ...
1
vote
1answer
411 views
Not Receiving Growl Messages from Autotest on Windows
I am following the Ruby on Rails Tutorial (http://ruby.railstutorial.org) . In Chapter 3, the author covers testing. Everything seems to be working according to the instructions, but I don't get Growl ...
1
vote
2answers
456 views
Getting Autotest to Work with Growl on OS X
I'm using Ruby 1.9.2 and Rails 3.0.7 on Mac OS X 10.6.7.
I have had the most terrible time getting growl to display autotest notifications. I have autotest installed and working perfectly.
...
1
vote
0answers
84 views
change in system causing custom growl send script to send blank message body
I am using class.growl.php to send myself server updates on my debian machine it sends the body content fine but on centos 5.6 it sends them with an empty body when run from cron but fine when run ...
1
vote
4answers
868 views
Modify shell script to monitor/ping multiple ip addresses
Alright so I need to constantly monitor multiple routers and computers, to make sure they remain online. I have found a great script here that will notify me via growl(so i can get instant ...
1
vote
1answer
804 views
Show messages based on Severity in two p:growl
i'm using primefaces p:growl.
<p:growl id="msgsInfo"
rendered="true"
showDetail="true" />
<p:growl id="msgsError"
globalOnly="true"
...
1
vote
4answers
433 views
Implement Growl in Java Application
I want my Java application to make a growl notification. My IDEs are Eclipse and Netbeans, and I am trying to implement a library in either (so far it worked it neither). How can I just add the ...
1
vote
2answers
194 views
Increase scan rate autotest with rspec
I find the integration with RSpec, Growl and rails particularly useful. However, it takes about two to three seconds before a change (save file) is picked up by autotest.
Is there a way to increase ...
1
vote
2answers
447 views
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 ...
1
vote
2answers
316 views
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 ...
1
vote
3answers
331 views
file path error (WINDOWS) with autotest growl ( REvised)
im going through the setup on
http://www.railstutorial.org/chapters/static-pages#fig:autotest_green
and im stuck on this particular error:
ERROR READOUT: http://pastie.org/1015405
What i can see ...
1
vote
1answer
176 views
Ruby gem for Growl
I'm looking for a gem that's able to send Growl notifications and receive a click-event on the notification. There are some gems available but the problem is none of them seem to be compatible with ...
1
vote
2answers
719 views
OS X firewall popup about growlnotify keeps popping up
I have autotest setup with growlnotify using growl_glue (version 1.0.7):
require 'growl_glue'
GrowlGlue::Autotest.initialize do |config|
config.notification :use_network_notifications => true
...
1
vote
3answers
576 views
Can't add (Growl) Framework to Release version of my App
I've created a new App and want to test it in a release version. So I copied the Growl Framework to my project folder and added into XCode.
Then I copied the new files in the target in my project and ...
1
vote
1answer
2k views
Growl Notifications from a Web Server
I notice that Growl allows for the possibility of Growl notifications from a website. Has anyone tried implementing this?
If so, what form did it take? Did you implement multi user support? And, can ...
0
votes
1answer
17 views
Where should I add require autotest to my autotest file
I am creating a new rails app as a learning project. I have already completed a rails app store for college but I am now trying to start a new app now knowing a bit more i didn't before. I wish to ...
0
votes
0answers
44 views
Contact Form - success/errors message outside php form page treatment (mimic the growl notification)
I'm new to php. I have created a simple contact form for my website with 2 files, "index.html" and "process.php". They seem to work ok. I want the success or errors message to appear in the ...
0
votes
2answers
39 views
Loading Growl in my Mac app: Unable to read symbols
I am trying to load Growl so I can use it in my Mac app, but I keep getting this error:
warning: Unable to read symbols for @executable_path/../Frameworks/Growl.framework/Versions/A/Growl (file not ...
0
votes
1answer
42 views
How to stop growl to notify same notification repeatedly?
This is a new macbook with Lion OS (version 10.7.2). I have configured it with my rails application.
I have couple of tabs opened running, rails app, spark, autotest -f, rails server
Here are the ...
0
votes
0answers
145 views
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 ...
0
votes
0answers
101 views
Jquery Growl Notification and Cookies?
I have implemented a Jquery Growl notification on our site here: www.greensurfshop.com
However, I need to make sure that when the user closes the box, that it stays closed. I'm pretty sure that I ...
0
votes
0answers
136 views
Growl + guard + spork problems. Notifications work, but not with specs
I have a rails 2 application working with spork and tested with rspec 1.
My gems versiones are:
rails 2.3.11
rspec-rails 1.3.4
spork 0.8.5
guard 0.8.8
guard-rspec 0.5.5
growl_notify 0.0.3
...
0
votes
2answers
155 views
Set text of a Growl Notification using Automator?
I have an Automator Application containing the action "Show Growl Notification", which is always empty when it appears. I've tried using the "Get Specified Text" and "Get Value Of Variable" actions ...