Packages

SwiftUI menu bar applications driven from Elixir via a msgpack Port protocol. Render native macOS status bar popovers with a declarative view tree.

Current section

Files

Jump to
mgui_ex lib mgui_ex application.ex
Raw

lib/mgui_ex/application.ex

defmodule MguiEx.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
{Registry, keys: :unique, name: MguiEx.Notification.Registry},
{DynamicSupervisor, name: MguiEx.Notification.Supervisor, strategy: :one_for_one}
]
Supervisor.start_link(children, strategy: :one_for_one, name: MguiEx.Supervisor)
end
end