blob: 2fae3029d4204f35c8adf4d98563021318e2ac6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python
import parser, theme, os, argparse
args_parser = argparse.ArgumentParser(description='Process some integers.')
args_parser.add_argument('theme_path', metavar='theme', type=str, nargs='?',
help='YAML i3 theme path')
args = args_parser.parse_args()
##### Apply Theme #####
loaded_theme=theme.load(args.theme_path)
parser.apply_theme(os.environ["HOME"]+"/.config/i3/config",loaded_theme)
|