summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-03-28 12:46:17 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-03-28 12:46:17 +1100
commit0994de650f3312c6e5e2b5f64f8b9ae127ec2add (patch)
tree179697f4cf01f065e316573ae8e2d0f8685a8eb5 /src/modules
parentlauncher: transparency action (diff)
downloadcaelestia-shell-0994de650f3312c6e5e2b5f64f8b9ae127ec2add.tar.gz
caelestia-shell-0994de650f3312c6e5e2b5f64f8b9ae127ec2add.tar.bz2
caelestia-shell-0994de650f3312c6e5e2b5f64f8b9ae127ec2add.zip
sidebar: fix bluetooth device battery
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/sidebar/modules/bluetooth.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/sidebar/modules/bluetooth.tsx b/src/modules/sidebar/modules/bluetooth.tsx
index b6ff6d7..60b1fa4 100644
--- a/src/modules/sidebar/modules/bluetooth.tsx
+++ b/src/modules/sidebar/modules/bluetooth.tsx
@@ -31,6 +31,7 @@ const BluetoothDevice = (device: AstalBluetooth.Device) => (
};
self.hook(device, "notify::connected", update);
self.hook(device, "notify::paired", update);
+ self.hook(device, "notify::battery-percentage", update);
update();
}}
/>