diff options
| author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2026-07-20 22:39:26 -0400 |
|---|---|---|
| committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2026-07-20 22:39:26 -0400 |
| commit | 810cb6fdd86452b75e520fc17daec40ba36eba13 (patch) | |
| tree | ec16094768c947d92273bccf8e6d520e9bb248a8 /src/er_xdg_pipe_menu_app.erl | |
Initial OTP application skeleton
rebar3-generated er_xdg_pipe_menu app/supervisor scaffold, to be filled
in with XDG .desktop file discovery/parsing and openbox pipemenu
generation. MIT licensed.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Diffstat (limited to 'src/er_xdg_pipe_menu_app.erl')
| -rw-r--r-- | src/er_xdg_pipe_menu_app.erl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/er_xdg_pipe_menu_app.erl b/src/er_xdg_pipe_menu_app.erl new file mode 100644 index 0000000..1880de8 --- /dev/null +++ b/src/er_xdg_pipe_menu_app.erl @@ -0,0 +1,18 @@ +%%%------------------------------------------------------------------- +%% @doc er_xdg_pipe_menu public API +%% @end +%%%------------------------------------------------------------------- + +-module(er_xdg_pipe_menu_app). + +-behaviour(application). + +-export([start/2, stop/1]). + +start(_StartType, _StartArgs) -> + er_xdg_pipe_menu_sup:start_link(). + +stop(_State) -> + ok. + +%% internal functions |
