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"
}
},
"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": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1738200090,

View file

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

View file

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

View file

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

View file

@ -7,10 +7,13 @@ import Quickshell.Widgets
MouseArea {
id: root
required property SystemTrayItem item
width: parent.width
height: parent.width
Layout.fillWidth: true
Layout.preferredHeight: parent.width
acceptedButtons: Qt.LeftButton | Qt.RightButton
anchors.horizontalCenter: parent.horizontalCenter
onClicked: event => {
switch (event.button) {
case Qt.LeftButton:
@ -28,11 +31,15 @@ MouseArea {
id: menu
menu: root.item.menu
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 {
source: root.item.icon
anchors.centerIn:parent
width: parent.width
height: parent.height
}

View file

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