mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
22 lines
425 B
QML
22 lines
425 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
import QtQuick.Effects
|
|
import qs.config
|
|
|
|
Item {
|
|
property var sourceItem: null
|
|
|
|
Loader {
|
|
active: Config.runtime.appearance.tintIcons
|
|
anchors.fill: parent
|
|
sourceComponent: MultiEffect {
|
|
source: sourceItem
|
|
|
|
saturation: -1.0
|
|
contrast: 0.10
|
|
brightness: -0.08
|
|
blur: 0.0
|
|
}
|
|
|
|
}
|
|
} |