From cc4f2ee7c966728e08767b5aac412fc6969601db Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Thu, 25 Feb 2021 10:17:19 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=BE=20Better=20logging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- builder/bbpkg/constants.py | 10 +++++----- builder/build.py | 2 ++ 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index fdf52d94..eae3e687 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ themes test.py # Logs Files -build.log +builder/files.txt # Extra .vscode diff --git a/builder/bbpkg/constants.py b/builder/bbpkg/constants.py index 3cbf9083..9dd4b121 100644 --- a/builder/bbpkg/constants.py +++ b/builder/bbpkg/constants.py @@ -5,7 +5,7 @@ from typing import Dict # Info AUTHOR = "Kaiz Khatri" -URL = "https://github.com/ful1e5/Google_Cursor" +URL = "https://github.com/ful1e5/Bibata_Cursor" # XCursor X_DELAY: int = 10 @@ -85,18 +85,18 @@ WIN_CURSORS_CFG: Dict[str, Dict[str, str]] = { ########## # Static # ########## - "right_ptr.png": {"to": "Alternate", "position": "top_right"}, + "right_ptr.png": {"to": "Alternate", "position": "top_left"}, "cross.png": {"to": "Cross"}, "left_ptr.png": {"to": "Default", "position": "top_left"}, - "bottom_right_corner.png": {"to": "Diagonal_1"}, - "bottom_left_corner.png": {"to": "Diagonal_2"}, + "bd_double_arrow.png": {"to": "Diagonal_1"}, + "fd_double_arrow.png": {"to": "Diagonal_2"}, "pencil.png": {"to": "Handwriting"}, "question_arrow.png": {"to": "Help", "position.png": "top_left"}, "sb_h_double_arrow.png": {"to": "Horizontal"}, "xterm.png": {"to": "IBeam", "position": "top_left"}, "hand2.png": {"to": "Link", "position": "top_left"}, "hand1.png": {"to": "Move"}, - "dnd_no_drop.png": {"to": "Unavailiable", "position": "top_left"}, + "circle.png": {"to": "Unavailiable", "position": "top_left"}, "sb_v_double_arrow.png": {"to": "Vertical"}, ############ # Animated # diff --git a/builder/build.py b/builder/build.py index 73df3280..4e78f7c9 100644 --- a/builder/build.py +++ b/builder/build.py @@ -109,6 +109,8 @@ comments = { x_out_dir = Path(args.out_dir) / name win_out_dir = Path(args.out_dir) / f"{name}-Windows" +print(f"=> Creating {name}") + config = get_config( bitmaps_dir, x_sizes=args.xsizes,