2016-08-03 09:38:55 +00:00
|
|
|
var desktopsArray = desktopsForActivity(currentActivity());
|
2014-09-26 19:06:16 +00:00
|
|
|
for (var j = 0; j < desktopsArray.length; j++) {
|
|
|
|
|
desktopsArray[j].wallpaperPlugin = "org.kde.image";
|
2014-09-03 14:50:41 +00:00
|
|
|
}
|
2021-10-12 13:50:36 +00:00
|
|
|
|
2021-02-26 03:56:25 +00:00
|
|
|
// keep this list in sync with shell/contents/updates/panelsfix.js
|
2015-03-13 21:16:19 +00:00
|
|
|
var panel = new Panel("org.kde.phone.panel");
|
2021-09-13 15:08:18 +00:00
|
|
|
panel.location = "top";
|
2019-10-22 10:56:36 +00:00
|
|
|
panel.addWidget("org.kde.plasma.notifications");
|
2021-10-12 13:50:36 +00:00
|
|
|
panel.height = 1.25 * gridUnit; // HACK: supposed to be gridUnit + smallSpacing, but it doesn't seem to give the correct number
|
2015-06-11 22:35:46 +00:00
|
|
|
|
2021-08-25 20:57:45 +00:00
|
|
|
var bottomPanel = new Panel("org.kde.phone.taskpanel")
|
2021-09-13 15:08:18 +00:00
|
|
|
bottomPanel.location = "bottom";
|
2021-10-12 13:50:36 +00:00
|
|
|
bottomPanel.height = 2 * gridUnit;
|