git.lucas.co / cce-color-editor
color picker and palette editor
git clone https://git.lucas.co/cce-color-editor.git

commit680a3fd3736e2984a2e2bd4f8f023b8445015893
parentf7cca90dc7
authorLucas Galante <[email protected]>
date2026-06-28 23:12
Rename project to cce-colors

 Cargo.toml  | 2 +-
 Makefile    | 2 +-
 src/main.rs | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index a925abb..6ecdd58 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
 [package]
-name = "cce-color-interface"
+name = "cce-colors"
 version = "0.1.0"
 edition = "2021"
 
diff --git a/Makefile b/Makefile
index f454fff..7834c8e 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ build:
 
 install: build
 	mkdir -p ~/.local/bin
-	install -m 755 ../target/release/cce-color-interface ~/.local/bin/cce-color-interface
+	install -m 755 ../target/release/cce-colors ~/.local/bin/cce-colors
 
 run:
 	cargo run
diff --git a/src/main.rs b/src/main.rs
index f5ef57b..b631048 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -749,7 +749,7 @@ impl Application for ColorApp {
         };
         WindowSettings {
             title: "Color Interface".to_string(),
-            app_id: "cce-color-interface".to_string(),
+            app_id: "cce-colors".to_string(),
             width: 380,
             height: win_h,
             fullscreen: false,