/usr/share/kcm_kscreen/qml/Tip.qml is in kscreen 4:5.8.5-2.
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 | import QtQuick 2.1
import org.kde.plasma.core 2.0 as PlasmaCore
Item {
property alias icon: tipIcon.source;
property alias text: tipText.text;
width: parent.width;
height: units.iconSizes.toolbar;
opacity: 0.0;
Behavior on opacity {
PropertyAnimation {
duration: 100;
easing.type: Easing.InOutQuad;
}
}
PlasmaCore.IconItem {
id: tipIcon;
width: units.iconSizes.toolbar;
height: units.iconSizes.toolbar;
source: "dialog-information";
}
Text {
id: tipText;
anchors {
left: tipIcon.right;
leftMargin: 5;
verticalCenter: parent.verticalCenter;
}
color: palette.text;
}
}
|