status bar
git clone https://git.lucas.co/cce-status-interface.git
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,
}
}