Skip to content

Instantly share code, notes, and snippets.

@Tasssadar
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tasssadar/8c56f0a7b6f7b82fef6d to your computer and use it in GitHub Desktop.
Save Tasssadar/8c56f0a7b6f7b82fef6d to your computer and use it in GitHub Desktop.
random shinies

Turn off grayscale icons when the window is minimized in plasma 5:

/usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml

PlasmaCore.IconItem {
    id: icon

    anchors.fill: parent

    visible: false

    active: task.containsMouse
    enabled: true  // Original: !(model.Minimized && !plasmoid.configuration.showOnlyMinimized)

    source: model.DecorationRole

    onVisibleChanged: {
        if (visible && busyIndicator) {
            busyIndicator.destroy();
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment