From f1cd2d375be7eb81a9f4c7e3098d7c50c930ecfb Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Thu, 11 Jan 2024 13:24:39 +0100 Subject: [PATCH] changed Doom Emacs launch shortcut to conform with workspace shortcut --- qtile/.config/qtile/Keys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qtile/.config/qtile/Keys.py b/qtile/.config/qtile/Keys.py index bd020ca..3618f8f 100644 --- a/qtile/.config/qtile/Keys.py +++ b/qtile/.config/qtile/Keys.py @@ -33,7 +33,7 @@ keys = [ Key([mod], "plus", lazy.layout.grow(),desc="increase window size"), Key([mod], "minus", lazy.layout.shrink(),desc="decrease window size"), Key([mod], "n", lazy.layout.normalize(),desc="normalize windows"), - Key([mod], "o", lazy.layout.maximize(),desc="maximize current window"), + Key([mod], "m", lazy.layout.maximize(),desc="maximize current window"), Key([mod], "space", lazy.window.toggle_fullscreen(),desc="make current window fullscreen"), # app hotkeys @@ -43,7 +43,7 @@ keys = [ Key([mod],"c", lazy.spawn("code"),desc="Launch visual studio code"), Key([mod],"v", lazy.spawn(term + " -e nvim"),desc="Launch NeoVim"), Key([mod, "shift"],"s", lazy.spawn('gscreenshot -s -o -f /tmp/screenshots'),desc="take a screenshot"), - Key([mod], "m", lazy.spawn("emacsclient -c -a 'emacs'"), desc="Launch Emacs (Client)"), + Key([mod], "o", lazy.spawn("emacsclient -c -a 'emacs'"), desc="Launch Emacs (Client)"), # Toggle between different layouts as defined below Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),