diff --git a/build.py b/build.py index bf416fc7..9b7e2912 100644 --- a/build.py +++ b/build.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import json import log from clickgen import build_cursor_theme diff --git a/config.py b/config.py index c184673a..2aa157c2 100644 --- a/config.py +++ b/config.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import os import tempfile import json @@ -8,9 +10,9 @@ out_dir = "./themes" # Build Config delay = 35 sizes = [24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96] -configs = [] # Configs For Each Theme in bitmaps directory +configs = [] for directory in os.listdir(bitmaps_dir): name = directory temp_folder = tempfile.mkdtemp() diff --git a/helper.py b/helper.py index 56ca6e3b..cd85f088 100644 --- a/helper.py +++ b/helper.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import shutil import json import sys diff --git a/log.py b/log.py index 60647d4e..e59183ce 100644 --- a/log.py +++ b/log.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import logging logging.basicConfig(filename='build.log', filemode='w',