This file is indexed.

/usr/share/kde4/apps/plasma-desktop/init/10-desktop-base.js is in desktop-base 7.0.3ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
// Placed in /usr/share/kde4/apps/plasma-desktop/init/
// This script is run for new users, which do not have a .kde directory
// and it set's the default wallpaper for all activities

a = activities()

for (i in a) {
    a[i].wallpaperPlugin = 'image'
    a[i].wallpaperMode = 'SingleImage'
    a[i].currentConfigGroup = Array('Wallpaper', 'image')
    a[i].writeConfig('wallpaper', 'joy')                //change this in wheezy+1
    a[i].writeConfig('wallpaperposition', '2')          //enables croping
}