Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Modules/Bar/Widgets/ControlCenter.qml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ NIconButton {
IconImage {
id: customOrDistroLogo
anchors.centerIn: parent
width: root.buttonSize * 0.8
width: root.buttonSize * 0.7
height: width
source: {
if (useDistroLogo)
Expand Down
2 changes: 1 addition & 1 deletion Modules/Bar/Widgets/Launcher.qml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ NIconButton {
IconImage {
id: customOrDistroLogo
anchors.centerIn: parent
width: root.buttonSize * 0.8
width: root.buttonSize * 0.7
height: width
source: {
if (useDistroLogo)
Expand Down
8 changes: 7 additions & 1 deletion Services/Networking/BluetoothService.qml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,20 @@ Singleton {
}
}

// Handle potential case where Quickshell doesnt't properly update adapter after system wakeup
// Handle potential case where Quickshell doesnt't properly update adapter after boot or system wakeup
Comment thread
notiant marked this conversation as resolved.
Connections {
target: Time
function onResumed() {
ctlPollTimer.restart();
}
}

onAdapterChanged: {
if (adapter) {
Comment thread
notiant marked this conversation as resolved.
ctlPollTimer.restart();
}
}

// Track adapter state changes
Connections {
target: adapter
Expand Down