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
|
// take care that desktop isn't locked
var was_locked = false;
if (locked) {
was_locked = true;
locked = false;
}
var panel = new Panel
if (panelIds.length == 1) {
// we are the only panel, so set the location for the user
panel.location = 'bottom'
}
panel.height = screenGeometry(panel.screen).height >= 1024 ? 35 : 27;
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", applicationPath("dolphin.desktop"));
webbrowserIcon = panel.addWidget("icon");
webbrowserIcon.writeConfig("Url", applicationPath("x-www-browser.desktop"));
konsoleIcon = panel.addWidget("icon");
konsoleIcon.writeConfig("Url", applicationPath("konsole.desktop"));
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");
// restore previous lock state
if (was_locked) {
locked = true;
}
|