b7f083b1da
The current import rule fails in two ways: - commitc62e7a6a
moved the theme's stylesheet to the builddir - since commit49c4ba56
, assets are addressed as resource:// URIs Fix both issues by loading and referencing the theme resource instead of the stylesheet itself. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/38
33 lines
947 B
JavaScript
33 lines
947 B
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
const Config = imports.misc.config;
|
|
|
|
imports.gi.versions.Clutter = Config.LIBMUTTER_API_VERSION;
|
|
imports.gi.versions.Gtk = '3.0';
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
const Gio = imports.gi.Gio;
|
|
const GLib = imports.gi.GLib;
|
|
const St = imports.gi.St;
|
|
|
|
const Environment = imports.ui.environment;
|
|
|
|
function init(stage) {
|
|
Environment.init();
|
|
let themeResource = Gio.Resource.load(global.datadir + '/gnome-shell-theme.gresource');
|
|
themeResource._register();
|
|
|
|
let context = St.ThemeContext.get_for_stage(stage);
|
|
let stylesheetPath = GLib.getenv("GNOME_SHELL_TESTSDIR") + "/testcommon/test.css";
|
|
let theme = new St.Theme({ application_stylesheet: Gio.File.new_for_path(stylesheetPath) });
|
|
context.set_theme(theme);
|
|
}
|
|
|
|
function main(stage) {
|
|
stage.show();
|
|
stage.connect('destroy', function() {
|
|
Clutter.main_quit();
|
|
});
|
|
Clutter.main();
|
|
}
|