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:
parent
0a35bf2309
commit
81445d83fa
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue