This file is indexed.

/usr/share/kde4/apps/kcm_kscreen/qml/Tip.qml is in kscreen 1.0.2.1-1.

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
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
import QtQuick 1.1
import org.kde.plasma.core 0.1 as PlasmaCore
import org.kde.qtextracomponents 0.1

Item {

    property alias icon: tipIcon.icon;
    property alias text: tipText.text;

    width: parent.width;
    height: theme.iconSizes.toolbar;

    opacity: 0.0;

    Behavior on opacity {
        PropertyAnimation {
            duration: 100;
            easing.type: Easing.InOutQuad;
        }
    }

    PlasmaCore.Theme {

        id: theme;

    }

    QIconItem {

        id: tipIcon;

        width: theme.iconSizes.toolbar;
        height: theme.iconSizes.toolbar;

        icon: "dialog-information";
    }

    Text {

        id: tipText;

        anchors {
            left: tipIcon.right;
            leftMargin: 5;
            verticalCenter: parent.verticalCenter;
        }

        color: palette.text;
    }
}