mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-06 14:26:32 +00:00
27 lines
469 B
QML
27 lines
469 B
QML
import Quickshell
|
|
import qs.Commons
|
|
import qs.Widgets
|
|
import qs.Services
|
|
|
|
NIconButton {
|
|
id: root
|
|
|
|
property ShellScreen screen
|
|
property real scaling: 1.0
|
|
property bool allowUserSettings: true
|
|
|
|
icon: "favorite"
|
|
tooltipText: "Hello world"
|
|
sizeRatio: 0.8
|
|
|
|
colorBg: Color.mSurfaceVariant
|
|
colorFg: Color.mOnSurface
|
|
colorBorder: Color.transparent
|
|
colorBorderHover: Color.transparent
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
onClicked: {
|
|
|
|
}
|
|
}
|