From 81445d83fa7a5f4d64319338916df3309f945433 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 19 Jul 2022 10:46:24 -0400 Subject: [PATCH] fix(qtile): require emacsclient to use service daemon This should fix an issue where using the emacs launch hotkeys would spawn a new process using `-a 'emacs'`, which had a high chance of bricking the daemon all together. --- users/infinidoge/config/qtile/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/infinidoge/config/qtile/config.py b/users/infinidoge/config/qtile/config.py index 9b36e1f..020beab 100644 --- a/users/infinidoge/config/qtile/config.py +++ b/users/infinidoge/config/qtile/config.py @@ -46,7 +46,7 @@ class Apps: TERMINAL = guess_terminal(preference="kitty") # Set preference if necessary SHELL = "zsh" - EDITOR = "emacsclient -c -a 'emacs'" + EDITOR = "emacsclient -c" @classmethod def terminal_command(cls, program, args=tuple(), *, terminal=None):