config/qtile: add toggle for bluetooth manager

This commit is contained in:
Infinidoge 2023-09-16 11:52:19 -04:00
parent 0cc0392cbf
commit 9fab8b94bd

View file

@ -482,6 +482,7 @@ groups.append(
[
DropDown("calculator", "speedcrunch", x=0.2, y=0.2, width=0.6, height=0.6),
DropDown("arandr", "arandr", x=0.2, y=0.1, width=0.6, height=0.4),
DropDown("bluetooth", "blueman-manager", x=0.2, y=0.2, width=0.6, height=0.6),
],
)
)
@ -497,6 +498,10 @@ keys.extend(
[Keys.SUPER, Keys.ALT], "m",
lazy.group["scratchpad"].dropdown_toggle("arandr"),
),
Key(
[Keys.SUPER, Keys.ALT], "b",
lazy.group["scratchpad"].dropdown_toggle("bluetooth"),
),
]
)
# fmt: on