1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-17 02:13:39 +00:00
Dotfiles/.local/bin/alacritty-colorscheme
2020-09-09 16:51:58 +03:00

9 lines
223 B
Python
Executable file

#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from alacritty_colorscheme.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())