git.lucas.co / cce-status-interface
status bar
git clone https://git.lucas.co/cce-status-interface.git

commit83e0743e6dd9f0ce4e6b5373e9db7adeae5e70d5
parent7aaa0f0c0b
authorLucas Galante <[email protected]>
date2026-06-15 08:42
Disable fullscreen and update install target to use workspace target directory

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

diff --git a/Makefile b/Makefile
index 1a78e94..dc9c867 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ build:
 
 install: build
 	mkdir -p ~/.local/bin
-	install -m 755 target/release/cce-status-interface ~/.local/bin/cce-status-interface
+	install -m 755 ../target/release/cce-status-interface ~/.local/bin/cce-status-interface
 
 run:
 	cargo run
diff --git a/src/main.rs b/src/main.rs
index fda88df..45145c2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -839,7 +839,7 @@ impl clear_ui::engine::Application for StatusApp {
             app_id: "cce-status-interface".to_string(),
             width: 1920,
             height: read_status_height_from_config() as u32,
-            fullscreen: true,
+            fullscreen: false,
             min_size: None,
         }
     }