From 290999bd1bbdee39e7a2afc5fced814a046a48f4 Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Fri, 17 Sep 2021 17:06:09 -0300 Subject: [PATCH] qtile: change keybind to open bluetooth mngr --- .config/qtile/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d533405..480e817 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -98,7 +98,7 @@ keys = [ Key([MOD], "BackSpace", lazy.spawn(POWER_MENU), desc="Open power menu"), Key([], "Print", lazy.spawn(SCREENSHOT), desc="Take a screenshot of all the screens"), Key([MOD], "Print", lazy.spawn(SCREENSHOT_UTILITY), desc="Open screenshot utility"), - Key([MOD, "control"], "c", lazy.spawn(BLUETOOTH_MANAGER), desc="Open bluetooth manager"), + Key([MOD, "control"], "b", lazy.spawn(BLUETOOTH_MANAGER), desc="Open bluetooth manager"), # Clipboard Key([MOD, "shift"], "c", lazy.spawn(CLIPBOARD_MANAGER), desc="Launch clipboard manager"), Key([MOD, ALT], "c", lazy.spawn(COLOR_PICKER), desc="Launch colorpicker"),