This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a6aa58
commit 8fcf4e1
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Notifier | ||
[![Notifier](http://pkg.julialang.org/badges/Notifier_0.6.svg)](http://pkg.julialang.org/detail/Notifier) | ||
[![Build Status](https://travis-ci.org/goropikari/Notifier.jl.svg?branch=master)](https://travis-ci.org/goropikari/Notifier.jl) | ||
[![codecov.io](http://codecov.io/github/goropikari/Notifier.jl/coverage.svg?branch=master)](http://codecov.io/github/goropikari/Notifier.jl?branch=master) | ||
|
||
|
@@ -13,7 +14,7 @@ This package is notification tools for Julialang. | |
- desktop notification | ||
- sound notification | ||
- email notification | ||
- say notification (read given massage aloud) | ||
- say notification (Read given massage aloud) | ||
- Windows (Experimental) | ||
- desktop notification | ||
- sound notification | ||
|
@@ -45,12 +46,12 @@ $ echo test | mail -s foo [email protected] | |
### popup notification | ||
```Julia | ||
using Notifier | ||
notify("calculation done") | ||
notify("Task completed") | ||
# defalut title is "Julia". | ||
# You can change the title by title option. | ||
notify("calculation done", title="foofoo") | ||
notify("calculation done", sound=true) # with sound | ||
notify("calculation done", sound="foo.wav") # specify a sound file | ||
notify("Task completed", title="foofoo") | ||
notify("Task completed", sound=true) # with sound | ||
notify("Task completed", sound="foo.wav") # specify a sound file | ||
alarm() # only sound. You can specify a sound file, alarm(sound="foo.wav") | ||
``` | ||
![Screenshot of a Notification](./docs/linuxpopup.png?raw=true) | ||
|