mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
Port most of the player to GTK4. Some things are still broken or disabled due to GTK change, but will be gradually fixed.
15 lines
239 B
JavaScript
15 lines
239 B
JavaScript
imports.gi.versions.Gdk = '4.0';
|
|
imports.gi.versions.Gtk = '4.0';
|
|
|
|
const { Gst } = imports.gi;
|
|
const { App } = imports.clapper_src.app;
|
|
|
|
Gst.init(null);
|
|
|
|
function main()
|
|
{
|
|
let clapper = new App({
|
|
playlist: ARGV
|
|
}).run();
|
|
}
|