Questions tagged [growl]

Growl is a global notification system for the Mac OS X and Windows operating systems.

Growl is a global notification system for the Mac OS X and Windows operating systems. Applications can use Growl to display small notifications about events which the user deems important, in a consistent manner. This allows users to fully control their notifications, application developers to spend little time creating notifications, and Growl developers to concentrate on the usability of notifications.

203 questions
102
votes
3 answers

How to manually install a pypi module without pip/easy_install?

I want to use the gntp module to display toaster-like notifications for a C/C++ software. I want to package all the dependencies for the soft to be self-executable on a another computer. The gntp module is only available through the pip installer,…
lucasg
  • 9,892
  • 4
  • 31
  • 52
47
votes
3 answers

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 passed & failed. I had the command-line version of this…
D. Simpson
  • 1,862
  • 17
  • 32
46
votes
8 answers

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 description goes here') .. and that would notify with corresponding…
Sridhar Ratnakumar
  • 68,948
  • 61
  • 139
  • 172
19
votes
9 answers

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 it will be limited to only Mac users with Safari…
Louis W
  • 2,950
  • 5
  • 39
  • 70
13
votes
3 answers

How to use Primefaces' p:growl and redirect to a page

hi im kind of new at jsf enviroment, im trying to update a primefaces growl and then redirect to a page from a commandButton action.
arkantos
  • 417
  • 4
  • 6
  • 13
11
votes
1 answer

Primefaces custom positioning for a specific p:growl

I am using PrimeFaces 3.3.1. I can customize growls by: .ui-growl { position:absolute; top:50%; left:50%; z-index:9999; } But it customizes all growls. I need to customize just one specific . I mean, I want to place just…
Selcuk
  • 807
  • 2
  • 11
  • 29
10
votes
2 answers

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 the Intel architectures: i386 (32-bit) x86_64…
NeXT5tep
  • 831
  • 1
  • 9
  • 23
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
  • 795
  • 2
  • 11
  • 21
9
votes
1 answer

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?) Growl 1.3 also supports GNTP, which I have not yet…
cwd
  • 47,510
  • 50
  • 154
  • 194
8
votes
2 answers

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 error itself, but couldn't come up with anything…
8
votes
3 answers

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 to my question. I keep seeing this in the…
koo
  • 2,798
  • 1
  • 20
  • 28
8
votes
3 answers

How to display p:fileUpload invalidFileMessage in p:growl

I'm using which is restricted to PDF only. However, the invalidFileMessage shows inside the component. How can I show it in instead?
Kishor Prakash
  • 7,381
  • 10
  • 53
  • 88
8
votes
2 answers

Growl notification in python

Using Growl in python but having no luck with anything appearing. Using the following code. Running on OSX Lion with Growl 1.3.3. Anyone got this working? import Growl notifier = Growl.GrowlNotifier(applicationName='mzgrowl',…
Maria Zverina
  • 9,753
  • 3
  • 41
  • 60
7
votes
1 answer

how to use p:growl only for confirmation not validation jsf2 primefaces

I want to use p:growl only when the dialog is submited to confirm user that the record is saved and I use the p:message for validation but the problem is the p:growl is used also for validation beside the p:message
atbegin-but
  • 243
  • 1
  • 8
  • 17
6
votes
3 answers

push-style notifications similar 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 up in the bottom left corner of the screen. It…
sethvargo
  • 24,859
  • 9
  • 79
  • 144
1
2 3
13 14