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.
This commit is contained in:
Infinidoge 2022-07-19 10:46:24 -04:00
parent 0a35bf2309
commit 81445d83fa

View file

@ -46,7 +46,7 @@ class Apps:
TERMINAL = guess_terminal(preference="kitty") # Set preference if necessary TERMINAL = guess_terminal(preference="kitty") # Set preference if necessary
SHELL = "zsh" SHELL = "zsh"
EDITOR = "emacsclient -c -a 'emacs'" EDITOR = "emacsclient -c"
@classmethod @classmethod
def terminal_command(cls, program, args=tuple(), *, terminal=None): def terminal_command(cls, program, args=tuple(), *, terminal=None):