Packages

Notify_ex is just a simple wrapper around 'notify-send' for Unix systems.

Current section

Files

Jump to
notify_ex lib notify.ex
Raw

lib/notify.ex

defmodule Notify do
@moduledoc false
def send(name, message, urgency \\ "normal", time \\ 2000, icon \\ "")
def send(name, message, urgency, time, icon) do
Notify.Notification.send(name, urgency, time, icon, message)
end
end