This file is indexed.

/usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Breeze/StatusBarStyle.qml is in qml-module-qtquick-controls-styles-breeze 4:5.12.4-0ubuntu1.

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
import QtQuick 2.0
import QtQuick.Controls.Styles 1.1
import "ColorUtils.js" as ColorUtils

StatusBarStyle {
    SystemPalette { id: sysPalette; colorGroup: SystemPalette.Active }

    padding {
        left: 4
        right: 4
        top: 4
        bottom: 4
    }
    background: Rectangle {
        implicitHeight: 16
        implicitWidth: 200
        color: sysPalette.window
    }
}