mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-29 03:13:47 +01:00
misc: cleanup
This commit is contained in:
parent
a58a9037c8
commit
3093cce327
@ -164,9 +164,6 @@ def process_args(args):
|
||||
|
||||
def main():
|
||||
"""Main script function."""
|
||||
util.create_dir(os.path.join(CONF_DIR, "colorschemes"))
|
||||
util.create_dir(os.path.join(CONF_DIR, "templates"))
|
||||
|
||||
args = get_args(sys.argv[1:])
|
||||
process_args(args)
|
||||
|
||||
|
@ -54,6 +54,8 @@ def every(colors, output_dir=CACHE_DIR):
|
||||
template_dir = os.path.join(MODULE_DIR, "templates")
|
||||
template_dir_user = os.path.join(CONF_DIR, "templates")
|
||||
|
||||
util.create_dir(template_dir_user)
|
||||
|
||||
join = os.path.join # Minor optimization.
|
||||
|
||||
for file in os.scandir(template_dir):
|
||||
|
@ -36,6 +36,8 @@ def file(input_file):
|
||||
user_theme_file = os.path.join(CONF_DIR, "colorschemes", theme_name)
|
||||
theme_file = os.path.join(MODULE_DIR, "colorschemes", theme_name)
|
||||
|
||||
util.create_dir(os.path.dirname(user_theme_file))
|
||||
|
||||
# Find the theme file.
|
||||
if os.path.isfile(input_file):
|
||||
theme_file = input_file
|
||||
|
Loading…
Reference in New Issue
Block a user