mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
Cleanup the Clapper install path detection code in a way to make gresources loading eventually possible for compiled builds
20 lines
345 B
JavaScript
20 lines
345 B
JavaScript
imports.gi.versions.Gdk = '4.0';
|
|
imports.gi.versions.Gtk = '4.0';
|
|
imports.gi.versions.Soup = '2.4';
|
|
|
|
pkg.initGettext();
|
|
|
|
const Misc = imports.src.misc;
|
|
Misc.appId += '.Remote';
|
|
|
|
const { Gtk, Adw } = imports.gi;
|
|
const { AppRemote } = imports.src.appRemote;
|
|
|
|
function main(argv)
|
|
{
|
|
Gtk.init();
|
|
Adw.init();
|
|
|
|
new AppRemote().run(argv);
|
|
}
|