mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 08:21:59 +02:00
The "clapper_src" directory name was unusual. This was done to make it work as a widget for other apps. Now that this functionality got removed it can be named simply "src" as recommended by guidelines.
16 lines
305 B
JavaScript
16 lines
305 B
JavaScript
imports.gi.versions.Gdk = '4.0';
|
|
imports.gi.versions.Gtk = '4.0';
|
|
|
|
const { AppRemote } = imports.src.appRemote;
|
|
const Misc = imports.src.misc;
|
|
|
|
const ID_POSTFIX = 'Remote';
|
|
|
|
Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`;
|
|
Misc.appId += '.' + ID_POSTFIX;
|
|
|
|
function main()
|
|
{
|
|
new AppRemote().run();
|
|
}
|