96963520da
Add a top panel with a label "Activities" you can click on and a HH:MM:SS clock. (A little more and we'll be caught up to gnome-0.9.) svn path=/trunk/; revision=10
13 lines
220 B
JavaScript
13 lines
220 B
JavaScript
/* -*- 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();
|
|
}
|