feat: small improvements

This commit is contained in:
nydragon 2025-03-15 18:57:58 +01:00
parent 2ca8381987
commit 693a785140
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
6 changed files with 54 additions and 47 deletions

19
flake.lock generated
View file

@ -16,11 +16,24 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1741851582,
"narHash": "sha256-cPfs8qMccim2RBgtKGF+x9IBCduRvd/N5F4nYpU0TVE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6607cf789e541e7873d40d3a8f7815ea92204f32",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"quickshell": { "quickshell": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": "nixpkgs_2"
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1738200090, "lastModified": 1738200090,

View file

@ -6,7 +6,6 @@
quickshell = { quickshell = {
url = "git+https://git.outfoxxed.me/quickshell/quickshell"; url = "git+https://git.outfoxxed.me/quickshell/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };

View file

@ -21,7 +21,7 @@ PanelWindow {
bottom: true bottom: true
} }
width: 40 width: 35
color: "transparent" color: "transparent"
NotificationToasts { NotificationToasts {
@ -29,18 +29,13 @@ PanelWindow {
} }
Rectangle { Rectangle {
color: "transparent" color: "#282828"
anchors.alignWhenCentered: true anchors.fill: parent
anchors.centerIn: parent
height: parent.height Column{
width: parent.width anchors.fill:parent
anchors.margins : 2
ColumnLayout { spacing: 2
width: 30
anchors.horizontalCenter: parent.horizontalCenter
Layout.maximumWidth: 30
// TODO: on click open a calendar view // TODO: on click open a calendar view
ClockWidget {} ClockWidget {}
@ -65,9 +60,13 @@ PanelWindow {
width: parent.width width: parent.width
height: parent.width height: parent.width
} }
}
BButton {
Item {
}
BButton {
id: mouse id: mouse
onClicked: NyshState.toggleDash() onClicked: NyshState.toggleDash()
@ -84,11 +83,11 @@ PanelWindow {
anchors.fill: parent anchors.fill: parent
} }
anchors.horizontalCenter: parent.horizontalCenter width: parent.width
height: width height: width
width: 30
anchors.bottom: parent.bottom
} }
}
} }
} }

View file

@ -1,31 +1,22 @@
import "../../base"
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import QtQuick.Controls
import Quickshell
import Quickshell.Services.SystemTray import Quickshell.Services.SystemTray
import "../../base"
BRectangle { BRectangle {
height: 112 width: parent.width
height: childrenRect.height + margins * 2
property int margins: 2;
ScrollView { ColumnLayout {
anchors.fill: parent anchors.centerIn: parent
contentWidth: availableWidth anchors.margins: parent.margins
padding: parent.border.width * 2 width: parent.width - anchors.margins * 2
Repeater {
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff model: SystemTray.items
ScrollBar.vertical.policy: ScrollBar.AlwaysOff SysTrayItem {
required property SystemTrayItem modelData
ColumnLayout { item: modelData
anchors.fill: parent
Repeater {
model: SystemTray.items
SysTrayItem {
required property SystemTrayItem modelData
item: modelData
}
} }
} }
} }

View file

@ -7,10 +7,13 @@ import Quickshell.Widgets
MouseArea { MouseArea {
id: root id: root
required property SystemTrayItem item required property SystemTrayItem item
width: parent.width
height: parent.width
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: parent.width Layout.preferredHeight: parent.width
acceptedButtons: Qt.LeftButton | Qt.RightButton acceptedButtons: Qt.LeftButton | Qt.RightButton
anchors.horizontalCenter: parent.horizontalCenter
onClicked: event => { onClicked: event => {
switch (event.button) { switch (event.button) {
case Qt.LeftButton: case Qt.LeftButton:
@ -28,11 +31,15 @@ MouseArea {
id: menu id: menu
menu: root.item.menu menu: root.item.menu
anchor.window: lbar anchor.window: lbar
anchor.rect.x: root.x + lbar.width
anchor.rect.y: root.y
anchor.rect.height: root.height * 3
anchor.edges: Edges.Left | Edges.Bottom
} }
IconImage { IconImage {
source: root.item.icon source: root.item.icon
anchors.centerIn:parent
width: parent.width width: parent.width
height: parent.height height: parent.height
} }

View file

@ -21,8 +21,6 @@ PanelWindow {
width: popups.width width: popups.width
} }
focusable: true
color: "transparent" color: "transparent"
width: 500 width: 500