Compare commits
2 commits
b84b29ed7f
...
9aa8084df9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9aa8084df9 | ||
|
|
a5b62b4af8 |
4 changed files with 12 additions and 10 deletions
|
|
@ -15,7 +15,7 @@ Singleton {
|
||||||
component Bar: QtObject {
|
component Bar: QtObject {
|
||||||
id: bar
|
id: bar
|
||||||
|
|
||||||
property int spacing: 8
|
property int spacing: 6
|
||||||
property int border: 2
|
property int border: 2
|
||||||
property int height: 50
|
property int height: 50
|
||||||
property int verticalMargins: 4
|
property int verticalMargins: 4
|
||||||
|
|
@ -37,7 +37,7 @@ Singleton {
|
||||||
id: workspace
|
id: workspace
|
||||||
|
|
||||||
property int spacing: 5
|
property int spacing: 5
|
||||||
property int iconSize: 16
|
property int iconSize: 18
|
||||||
property int width: 30
|
property int width: 30
|
||||||
property int height: 30
|
property int height: 30
|
||||||
property int verticalPadding: 6
|
property int verticalPadding: 6
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,6 @@ Scope {
|
||||||
|
|
||||||
SystemLogo {
|
SystemLogo {
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
implicitSize: 22
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Workspaces {
|
Workspaces {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
import Quickshell
|
import QtQuick
|
||||||
import Quickshell.Widgets
|
import QtQuick.Controls
|
||||||
|
|
||||||
IconImage {
|
Button {
|
||||||
source: Quickshell.iconPath("archlinux-logo")
|
icon.name: "archlinux-logo"
|
||||||
|
icon.height: 18
|
||||||
|
icon.width: 18
|
||||||
|
background: undefined
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ Item {
|
||||||
reversible: true
|
reversible: true
|
||||||
ColorAnimation {
|
ColorAnimation {
|
||||||
properties: "color"
|
properties: "color"
|
||||||
duration: 200
|
duration: 300
|
||||||
easing.type: Easing.InOutCubic
|
easing.type: Easing.InOutCubic
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -66,11 +66,11 @@ Item {
|
||||||
reversible: true
|
reversible: true
|
||||||
ParallelAnimation {
|
ParallelAnimation {
|
||||||
RotationAnimation {
|
RotationAnimation {
|
||||||
duration: 200
|
duration: 300
|
||||||
easing.type: Easing.InOutCubic
|
easing.type: Easing.InOutCubic
|
||||||
}
|
}
|
||||||
ColorAnimation {
|
ColorAnimation {
|
||||||
duration: 200
|
duration: 300
|
||||||
easing.type: Easing.OutCubic
|
easing.type: Easing.OutCubic
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue