[alacritty] Fix some color stuff

This commit is contained in:
Fabian Ising
2023-09-18 10:26:30 +02:00
parent bb76a182df
commit 2303f6f7f3
3 changed files with 17 additions and 6 deletions

View File

@@ -10,6 +10,7 @@
"""
import os
import sys
import color_switcher
CONFIG_FILE_NAME = "alacritty.yml"
CONFIG_FILE_DIR = os.path.expanduser("~/.config/alacritty/")
@@ -37,4 +38,4 @@ def main(turn_on=False):
if __name__=="__main__":
main(len(sys.argv) == 2 and sys.argv[1] == "on")
color_switcher.main(len(sys.argv) == 2 and sys.argv[1] == "on")