Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-updates-src > by-pkgid > d1ad8eecb69708840fa4738d2cb99ab9 > files > 4

mageia-kde4-config-1-12.1.mga1.src.rpm

/*
 * Copyright (C) 2010 Mandriva Nicolas Lécureuil (nlecureuil at mandriva dot com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
*/


a = activityForScreen(0) 
if( a ) {
a.remove()
}
// We now create the new activity
var activity = new Activity("folderview")
// We change the wallpaper to use ours
// We now customize the panel
p = panelById(panelIds()[0])
if (p) {
// remove the default panel if any, we will add ours with our default config
    p.remove()
}

// Create the new "naked" panel
var panel = new Panel()
if (!panel) {
    exit()
}
panel.location = "bottom"
panel.height = "46"
panel.addWidget("simplelauncher")
panel.addWidget("notifier")
panel.addWidget("showdesktop")

panel.addWidget("pager")
panel.addWidget("tasks")
panel.addWidget("systemtray")
if (hasBattery) {
panel.addWidget("battery")
}
panel.addWidget("digital-clock")
panel.addWidget("lockout")

locked = true