mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
Daemon is responsible for starting and later watching over spawned "broadwayd" and "remote" app needed for remote playback control. We cannot use systemd n Flatpak, so we make do with running optional background subprocesses.
7 lines
86 B
JavaScript
7 lines
86 B
JavaScript
const { Daemon } = imports.clapper_src.daemon;
|
|
|
|
function main()
|
|
{
|
|
new Daemon();
|
|
}
|