From e664aec133840e16f18c94dde93d110555405e44 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 30 Jul 2020 10:22:25 +0200 Subject: [PATCH] [qtile] Added a few Emacs shortcurs Eshell, mu4e, and elfeed using emacsclient (es) --- qtile/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qtile/config.py b/qtile/config.py index b8e4cc7..0fe2d86 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -61,8 +61,11 @@ keys = [ Key([mod], "Return", lazy.spawn("es")), # es = emacsclient Key([mod], "t", lazy.spawn("alacritty -e /usr/bin/fish")), Key([mod, "shift"], "t", lazy.spawn("alacritty")), + Key([mod, "control"], "t", lazy.spawn("es -e '(eshell)'")), Key([mod], "b", lazy.spawn("nyxt")), Key([mod, "shift"], "b", lazy.spawn("firefox-developer-edition")), + Key([mod, "control"], "m", lazy.spawn("es -e '(mu4e)'")), + Key([mod, "control"], "e", lazy.spawn("es -e '(bjm/elfeed-load-db-and-open)'")), # Toggle between different layouts as defined below Key([mod], "Tab", lazy.next_layout()),