use termite as shell

This commit is contained in:
Maximilian Keßler 2021-09-16 22:55:49 +02:00
parent 20a146d96c
commit 1a595c7ad1

View File

@ -45,9 +45,9 @@ class Lecture:
def edit(self):
subprocess.Popen([
"x-terminal-emulator",
"-e", "zsh", "-i", "-c",
f"\\vim --servername kulak --remote-silent {str(self.file_path)}"
"termite",
"-e",
f"vim --servername tex-vorlesung --remote-silent {str(self.file_path)}"
])
def __str__(self):