diff --git a/.config/ags/modules/sideright/centermodules/bluetooth.js b/.config/ags/modules/sideright/centermodules/bluetooth.js index 2d13c6fc0..7276245b3 100644 --- a/.config/ags/modules/sideright/centermodules/bluetooth.js +++ b/.config/ags/modules/sideright/centermodules/bluetooth.js @@ -12,7 +12,7 @@ import { ConfigToggle } from '../../.commonwidgets/configwidgets.js'; // can't connect: sync_problem -const USE_SYMBOLIC_ICONS = false; +const USE_SYMBOLIC_ICONS = true; const BluetoothDevice = (device) => { // console.log(device); @@ -54,6 +54,7 @@ const BluetoothDevice = (device) => { const deviceConnectButton = ConfigToggle({ vpack: 'center', expandWidget: false, + desc: 'Toggle connection', initValue: device.connected, onChange: (self, newValue) => { device.setConnection(newValue); @@ -66,6 +67,7 @@ const BluetoothDevice = (device) => { vpack: 'center', className: 'sidebar-bluetooth-device-remove', child: MaterialIcon('delete', 'norm'), + tooltipText: 'Remove device', setup: setupCursorHover, onClicked: () => execAsync(['bluetoothctl', 'remove', device.address]).catch(print), }); diff --git a/.config/ags/scss/_sidebars.scss b/.config/ags/scss/_sidebars.scss index 9094dab84..b5b62ec07 100644 --- a/.config/ags/scss/_sidebars.scss +++ b/.config/ags/scss/_sidebars.scss @@ -891,7 +891,7 @@ $waifu_image_overlay_transparency: 0.7; } .sidebar-bluetooth-appicon { - font-size: 3.273rem; + font-size: 2.273rem; } .sidebar-bluetooth-device-remove {