mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
Current YouTube code was broken for quite some time. Replace it with the new Gtuber lib to make this code separate, independent and easier to maintain.
21 lines
381 B
JavaScript
21 lines
381 B
JavaScript
imports.gi.versions.Gdk = '4.0';
|
|
imports.gi.versions.Gtk = '4.0';
|
|
imports.gi.versions.Soup = '2.4';
|
|
imports.gi.versions.Gtuber = '0.0';
|
|
|
|
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);
|
|
}
|