From 028a0569fb130834a505e48ecdac9276f06f5d0e Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire Date: Sun, 29 May 2022 16:48:44 -0300 Subject: [PATCH] remove (rofi) bluetooth manager --- .config/qtile/config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d82f28c..d47a02a 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -31,9 +31,6 @@ COLOR_PICKER = os.path.expanduser( EMOJI_LAUNCHER = os.path.expanduser( "~/.scripts/bin/clip-moji" ) -BLUETOOTH_MANAGER = os.path.expanduser( - "~/.scripts/bin/rofi-bluetooth" -) SHOW_KEYBINDS = f"{TERMINAL} -t Keybinds -e python3 /home/grfreire/.config/qtile/list_keybinds.py" MEDIA_CONTROL = os.path.expanduser("~/.config/qtile/media_control.sh") @@ -88,7 +85,6 @@ keys = [ 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], "equal", lazy.spawn(ZOOM_UTILITY), desc="Open zoom utility"), - 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"),