This commit is contained in:
Kovid Goyal 2021-12-21 10:39:06 +05:30
parent b59e42c9cc
commit f71e0a6ee8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -523,6 +523,7 @@ def save_in_dir(self, dirpath: str) -> None:
atomic_save(self.raw.encode('utf-8'), os.path.join(dirpath, f'{self.name}.conf'))
def save_in_conf(self, confdir: str, reload_in: str) -> None:
os.makedirs(confdir, exist_ok=True)
atomic_save(self.raw.encode('utf-8'), os.path.join(confdir, 'current-theme.conf'))
confpath = os.path.realpath(os.path.join(confdir, 'kitty.conf'))
try: