launch i3-sensible-terminal instead of termite
This commit is contained in:
parent
79d7e17b5f
commit
9631f273e9
2 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ class Notes:
|
|||
|
||||
def open_terminal(self):
|
||||
result = subprocess.Popen(
|
||||
['termite'], env=self.environment(), cwd=self.root
|
||||
['i3-sensible-terminal'], env=self.environment(), cwd=self.root
|
||||
)
|
||||
|
||||
def compile_master(self):
|
||||
|
|
|
@ -9,7 +9,7 @@ def edit(filepath: Path, rootpath: Path = None, env=os.environ, servername='tex
|
|||
if not rootpath:
|
||||
rootpath = filepath.root
|
||||
subprocess.Popen([
|
||||
"termite",
|
||||
"i3-sensible-terminal",
|
||||
"-e",
|
||||
f"vim --servername {servername} --remote-silent {str(filepath)}"
|
||||
], env=env, cwd=str(rootpath))
|
||||
|
|
Loading…
Reference in a new issue