gnome-shell/js/ui/main.js

13 lines
220 B
JavaScript
Raw Normal View History

/* -*- mode: js2; js2-basic-offset: 4; -*- */
const Shell = imports.gi.Shell;
const Clutter = imports.gi.Clutter;
const Panel = imports.ui.panel;
let panel = null;
function start() {
panel = new Panel.Panel();
}