diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | kde-kanotix-settings/share/apps/plasma-desktop/updates/02-kanotix-default-setup.js | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 878b7bd..c856f16 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +etcskel-kanotix (2.0.2) dragonfire; urgency=low + + * use "desktop:/" instead of "~/Desktop" in 02-kanotix-default-setup.js. + + -- Andreas Loibl <andreas@andreas-loibl.de> Fri, 18 May 2012 12:16:47 +0200 + etcskel-kanotix (2.0.1) dragonfire; urgency=low * display the .desktop files in the folderview widget correctly. diff --git a/kde-kanotix-settings/share/apps/plasma-desktop/updates/02-kanotix-default-setup.js b/kde-kanotix-settings/share/apps/plasma-desktop/updates/02-kanotix-default-setup.js index b7d4a62..127db56 100644 --- a/kde-kanotix-settings/share/apps/plasma-desktop/updates/02-kanotix-default-setup.js +++ b/kde-kanotix-settings/share/apps/plasma-desktop/updates/02-kanotix-default-setup.js @@ -22,7 +22,7 @@ activity.writeConfig("wallpaper", wallpaper); activity.writeConfig("userswallpaper", wallpaper); var folderview = activity.addWidget("folderview"); -folderview.writeConfig("url", userDataPath("desktop")); +folderview.writeConfig("url", "desktop:/"); var geometry = screenGeometry(activity.screen).height > 800 ? QRectF(0,0,600,400) : QRectF(0,0,405,200); folderview.writeConfig("geometry", geometry); |