bluetooth2: using dbus api, shortening output, some refactoring
This commit is contained in:
parent
c3d4fce74c
commit
53de1b524a
1 changed files with 9 additions and 24 deletions
|
@ -8,7 +8,6 @@ Parameters:
|
||||||
contributed by `martindoublem <https://github.com/martindoublem>`_ - many thanks!
|
contributed by `martindoublem <https://github.com/martindoublem>`_ - many thanks!
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
|
@ -22,7 +21,6 @@ import core.input
|
||||||
|
|
||||||
import util.cli
|
import util.cli
|
||||||
|
|
||||||
|
|
||||||
class Module(core.module.Module):
|
class Module(core.module.Module):
|
||||||
def __init__(self, config, theme):
|
def __init__(self, config, theme):
|
||||||
super().__init__(config, theme, core.widget.Widget(self.status))
|
super().__init__(config, theme, core.widget.Widget(self.status))
|
||||||
|
@ -46,7 +44,7 @@ class Module(core.module.Module):
|
||||||
)
|
)
|
||||||
if state > 0:
|
if state > 0:
|
||||||
connected_devices = self.get_connected_devices()
|
connected_devices = self.get_connected_devices()
|
||||||
self._status = "On - {}".format(connected_devices)
|
self._status = "{}".format(connected_devices)
|
||||||
else:
|
else:
|
||||||
self._status = "Off"
|
self._status = "Off"
|
||||||
adapters_cmd = "rfkill list | grep Bluetooth"
|
adapters_cmd = "rfkill list | grep Bluetooth"
|
||||||
|
@ -58,31 +56,22 @@ class Module(core.module.Module):
|
||||||
|
|
||||||
def _toggle(self, widget=None):
|
def _toggle(self, widget=None):
|
||||||
"""Toggle bluetooth state."""
|
"""Toggle bluetooth state."""
|
||||||
if "On" in self._status:
|
|
||||||
state = "false"
|
|
||||||
else:
|
|
||||||
state = "true"
|
|
||||||
|
|
||||||
cmd = (
|
|
||||||
"dbus-send --system --print-reply --dest=org.blueman.Mechanism /org/blueman/mechanism org.blueman.Mechanism.SetRfkillState boolean:%s"
|
|
||||||
% state
|
|
||||||
)
|
|
||||||
|
|
||||||
logging.debug("bt: toggling bluetooth")
|
logging.debug("bt: toggling bluetooth")
|
||||||
util.cli.execute(cmd, ignore_errors=True)
|
|
||||||
|
SetRfkillState = self._bus.get_object("org.blueman.Mechanism", "/org/blueman/mechanism").get_dbus_method("SetRfkillState", dbus_interface="org.blueman.Mechanism")
|
||||||
|
SetRfkillState(self._status == "Off")
|
||||||
|
|
||||||
def state(self, widget):
|
def state(self, widget):
|
||||||
"""Get current state."""
|
"""Get current state."""
|
||||||
state = []
|
state = []
|
||||||
|
|
||||||
if self._status == "No Adapter Found":
|
if self._status in [ "No Adapter Found", "Off" ]:
|
||||||
state.append("critical")
|
state.append("critical")
|
||||||
elif self._status == "On - 0":
|
elif self._status == "0":
|
||||||
state.append("warning")
|
state.append("warning")
|
||||||
elif "On" in self._status and not (self._status == "On - 0"):
|
|
||||||
state.append("ON")
|
|
||||||
else:
|
else:
|
||||||
state.append("critical")
|
state.append("ON")
|
||||||
|
|
||||||
return state
|
return state
|
||||||
|
|
||||||
def get_connected_devices(self):
|
def get_connected_devices(self):
|
||||||
|
@ -92,12 +81,8 @@ class Module(core.module.Module):
|
||||||
).GetManagedObjects()
|
).GetManagedObjects()
|
||||||
for path, interfaces in objects.items():
|
for path, interfaces in objects.items():
|
||||||
if "org.bluez.Device1" in interfaces:
|
if "org.bluez.Device1" in interfaces:
|
||||||
if dbus.Interface(
|
if dbus.Interface(self._bus.get_object("org.bluez", path), "org.freedesktop.DBus.Properties", ).Get("org.bluez.Device1", "Connected"):
|
||||||
self._bus.get_object("org.bluez", path),
|
|
||||||
"org.freedesktop.DBus.Properties",
|
|
||||||
).Get("org.bluez.Device1", "Connected"):
|
|
||||||
devices += 1
|
devices += 1
|
||||||
return devices
|
return devices
|
||||||
|
|
||||||
|
|
||||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||||
|
|
Loading…
Reference in a new issue