bumblebee-status/bumblebee_status/modules/contrib/bluetooth.py

126 lines
3.8 KiB
Python
Raw Normal View History

2020-07-18 08:23:28 +02:00
"""Displays bluetooth status (Bluez). Left mouse click launches manager app `blueman-manager`,
2020-04-29 20:16:05 +02:00
right click toggles bluetooth. Needs dbus-send to toggle bluetooth state.
Parameters:
* bluetooth.device : the device to read state from (default is hci0)
* bluetooth.manager : application to launch on click (blueman-manager)
* bluetooth.dbus_destination : dbus destination (defaults to org.blueman.Mechanism)
* bluetooth.dbus_destination_path : dbus destination path (defaults to /)
* bluetooth.right_click_popup : use popup menu when right-clicked (defaults to True)
contributed by `brunosmmm <https://github.com/brunosmmm>`_ - many thanks!
2020-04-29 20:16:05 +02:00
"""
import os
import re
import logging
2020-04-29 20:19:18 +02:00
import core.module
import core.widget
import core.input
2020-04-29 20:16:05 +02:00
2020-04-29 20:19:18 +02:00
import util.cli
import util.format
import util.popup
2020-04-29 20:16:05 +02:00
2020-04-29 20:19:18 +02:00
class Module(core.module.Module):
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.status))
2020-04-29 20:16:05 +02:00
device = self.parameter("device", "hci0")
self.manager = self.parameter("manager", "blueman-manager")
self._path = "/sys/class/bluetooth/{}".format(device)
self._status = "Off"
2020-04-29 20:16:05 +02:00
core.input.register(self, button=core.input.LEFT_MOUSE, cmd=self.manager)
2020-04-29 20:16:05 +02:00
# determine whether to use pop-up menu or simply toggle the device on/off
2020-04-29 20:19:18 +02:00
right_click_popup = util.format.asbool(
self.parameter("right_click_popup", True)
)
2020-04-29 20:16:05 +02:00
if right_click_popup:
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd=self.popup)
2020-04-29 20:16:05 +02:00
else:
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd=self._toggle)
2020-04-29 20:16:05 +02:00
def status(self, widget):
"""Get status."""
return self._status
2020-04-29 20:19:18 +02:00
def update(self):
2020-04-29 20:16:05 +02:00
"""Update current state."""
if not os.path.exists(self._path):
self._status = "?"
2020-04-29 20:16:05 +02:00
return
# search for whichever rfkill directory available
try:
dirnames = next(os.walk(self._path))[1]
for dirname in dirnames:
m = re.match(r"rfkill[0-9]+", dirname)
2020-04-29 20:16:05 +02:00
if m is not None:
with open(os.path.join(self._path, dirname, "state"), "r") as f:
2020-04-29 20:16:05 +02:00
state = int(f.read())
if state == 1:
self._status = "On"
2020-04-29 20:16:05 +02:00
else:
self._status = "Off"
2020-04-29 20:16:05 +02:00
return
except IOError:
self._status = "?"
2020-04-29 20:16:05 +02:00
def popup(self, widget):
"""Show a popup menu."""
2020-04-29 20:19:18 +02:00
menu = util.popup.PopupMenu()
if self._status == "On":
menu.add_menuitem("Disable Bluetooth")
elif self._status == "Off":
menu.add_menuitem("Enable Bluetooth")
2020-04-29 20:16:05 +02:00
else:
return
# show menu and get return code
ret = menu.show(widget)
if ret == 0:
# first (and only) item selected.
self._toggle()
def _toggle(self, widget=None):
"""Toggle bluetooth state."""
if self._status == "On":
state = "false"
2020-04-29 20:16:05 +02:00
else:
state = "true"
2020-04-29 20:16:05 +02:00
dst = self.parameter("dbus_destination", "org.blueman.Mechanism")
dst_path = self.parameter("dbus_destination_path", "/")
2020-04-29 20:16:05 +02:00
cmd = (
"dbus-send --system --print-reply --dest={}"
" {} org.blueman.Mechanism.SetRfkillState"
" boolean:{}".format(dst, dst_path, state)
)
2020-04-29 20:16:05 +02:00
logging.debug("bt: toggling bluetooth")
util.cli.execute(cmd, ignore_errors=True)
2020-04-29 20:16:05 +02:00
def state(self, widget):
"""Get current state."""
state = []
if self._status == "?":
state = ["unknown"]
elif self._status == "On":
state = ["ON"]
2020-04-29 20:16:05 +02:00
else:
state = ["OFF"]
2020-04-29 20:16:05 +02:00
return state
2020-04-29 20:19:18 +02:00
2020-04-29 20:19:18 +02:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4