From 70dda905d6bc813bc4aaaf10356a05b3bae41815 Mon Sep 17 00:00:00 2001 From: Vaggelis kavouras Date: Tue, 10 Dec 2024 21:19:50 +0200 Subject: [PATCH] feat: Improve configuration management and enhance user experience - Refactored configuration handling in `main.go` to streamline processes and improve structure. - Added new methods for better management of configuration files. - Enhanced user feedback with distinct color-coded success and warning messages. - Updated build scripts for improved error handling and output clarity. - Enhanced documentation in `README.md` to clarify usage guidelines and system compatibility. This commit focuses on refining configuration processes and improving overall user interaction with the tool. --- .gitignore | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc9a792 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Binary files +app.exe +cursor-id-modifier-linux +cursor-id-modifier-macos +cursor-id-modifier-* +*.exe +*.dll +*.so +*.dylib + +# Build directories +bin/ +releases/ +scripts/ + +# IDE +.vscode/ + +# Go specific +go.sum + +# Temporary files +*.tmp +*~ + +# System files +.DS_Store +Thumbs.db \ No newline at end of file