mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
The remote app name should match the name of the main app, otherwise different name is displayed in the headerbar and its prefs window
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
imports.gi.versions.Gdk = '4.0';
|
|
imports.gi.versions.Gtk = '4.0';
|
|
|
|
const { AppRemote } = imports.clapper_src.appRemote;
|
|
const Misc = imports.clapper_src.misc;
|
|
|
|
const ID_POSTFIX = 'Remote';
|
|
|
|
Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`;
|
|
Misc.appId += '.' + ID_POSTFIX;
|
|
|
|
function main()
|
|
{
|
|
new AppRemote().run();
|
|
}
|