From 9fab8b94bd6474202c9c8710478587a555bd29cb Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 16 Sep 2023 11:52:19 -0400 Subject: [PATCH] config/qtile: add toggle for bluetooth manager --- users/infinidoge/config/qtile/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/users/infinidoge/config/qtile/config.py b/users/infinidoge/config/qtile/config.py index 6cb3f8a..03c496a 100644 --- a/users/infinidoge/config/qtile/config.py +++ b/users/infinidoge/config/qtile/config.py @@ -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