/usr/bin/setup-kde-skel is in startactive 1:0.4-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh
# This script will be started by startactive. In case of a previous
# installation the setup will be skipt.
if [ -f "${HOME}/.kde/share/config/plasma-device-appletsrc" ]; then
echo "${HOME}/.kde/share/config/plasma-device-appletsrc already exists, will not overwrite"
else
#enable the active plugin for Maliit
gconftool-2 --set "/maliit/onscreen/enabled" --type list --list-type=string [active-keyboard.qml,en_us]
gconftool-2 --set "/maliit/onscreen/active" --type list --list-type=string [active-keyboard.qml,en_us]
# Copy the /etc/skel
if [ ! -d "${HOME}/.kde" ]; then
cp -auR /etc/skel/.kde ${HOME}
fi
fi
|