From 463bbe7a40f2b9e830b9d3c10742e0ce6864812c Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Tue, 25 Aug 2020 12:43:38 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=A9=20SheBang=20#!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.py | 2 ++ config.py | 4 +++- helper.py | 2 ++ log.py | 2 ++ 4 files changed, 9 insertions(+), 1 deletion(-) 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',