Sophie

Sophie

distrib > Fedora > 16 > x86_64 > media > updates-src > by-pkgid > dc39721b9f9a3f64d98e6f9511488bb4 > files > 1

starcal-2.0.2-1.fc16.src.rpm

// Thanks to:
//     http://blog.fpmurphy.com/2011/05/more-gnome-shell-customization.html
// By: Hedayat Vatankhah <hedayat.fwd@gmail.com>, 2011
const Panel = imports.ui.panel;
const StatusIconDispatcher = imports.ui.statusIconDispatcher;

function init() {
}

function enable() {
    StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['starcal2.py'] = 'StarCalendar';
    StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['starcal.py'] = 'StarCalendar';
}

function disable() {
    StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['starcal2.py'] = '';
    StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['starcal.py'] = '';
}