summaryrefslogtreecommitdiff
path: root/plasma-desktop/updates/01-kanotix-default-setup.js
blob: 37ecbd09e154335822c3814133e2b2a116c3968d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// if desktop is locked, save current state and unlock
var was_locked = false;
if (locked) {
    was_locked = true
    locked = false
}

// remove all panels from desktop
pIds = panelIds;
for (i = 0; i < pIds.length; ++i) {
    p = panelById(pIds[i]);
    p.remove();
}

var panel = new Panel("panel");
panel.location = "bottom";
launcher = panel.addWidget("launcher");
launcher.globalShortcut = "Alt+F1"
launcher.writeConfig("Share", "false");
launcher.writeConfig("icon", "start-here-kanotix");
launcher.reloadConfig();
panel.addWidget("showdesktop");

dolphinIcon = panel.addWidget("icon");
dolphinIcon.writeConfig("Url", "file:///usr/share/applications/kde4/dolphin.desktop");
dolphinIcon.reloadConfig();

iceweaselIcon = panel.addWidget("icon");
iceweaselIcon.writeConfig("Url", "file:///usr/share/applications/iceweasel.desktop");
iceweaselIcon.reloadConfig();

konsoleIcon = panel.addWidget("icon");
konsoleIcon.writeConfig("Url", "file:///usr/share/applications/kde4/konsole.desktop");
konsoleIcon.reloadConfig();

panel.addWidget("pager");
panel.addWidget("tasks");

systray = panel.addWidget("systemtray");
systray.writeConfig("alwaysShown", "notifier");
i = 0;
if (hasBattery) {
    systray.currentConfigGroup = new Array("Applets", ++i);
    systray.writeConfig("plugin", "battery");
}
systray.currentConfigGroup = new Array("Applets", ++i);
systray.writeConfig("plugin", "notifier");

systray.currentConfigGroup = new Array("Applets", ++i);
systray.writeConfig("plugin", "org.kde.networkmanagement");

clock = panel.addWidget("digital-clock");
clock.writeConfig("showDate", "true");

// lock again, if it was locked before
if (was_locked) {
    locked = true
}