From a96d4457dc27a38f8d01616e19d1a8806f347d14 Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sat, 28 Aug 2021 17:27:44 -0300 Subject: [PATCH] qtile: add keybind to colorpicker --- .config/qtile/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 98dc073..9ba10e0 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -30,6 +30,9 @@ POWER_MENU = os.path.expanduser( WEB_QUICK_OPEN = os.path.expanduser( "~/.scripts/bin/firefox-quick-keywords" ) +COLOR_PICKER = os.path.expanduser( + "~/.scripts/bin/clip-color" +) EMOJI_LAUNCHER = os.path.expanduser( "~/.scripts/bin/clip-moji" ) @@ -92,6 +95,7 @@ keys = [ Key([MOD], "Print", lazy.spawn(SCREENSHOT_UTILITY), desc="Open screenshot utility"), # Clipboard Key([MOD, "shift"], "c", lazy.spawn(CLIPBOARD_MANAGER), desc="Launch clipboard manager"), + Key([MOD, ALT], "c", lazy.spawn(COLOR_PICKER), desc="Launch colorpicker"), Key([MOD, "shift"], "e", lazy.spawn(EMOJI_LAUNCHER), desc="Launch emoji launcher"), # Media Key([], "XF86AudioPlay", lazy.spawn(f"{MEDIA_CONTROL} play"), desc="Media control - play"),