Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git
Rename binary and start script references to clear-river
Cargo.lock | 2 +-
Cargo.toml | 2 +-
start-rust.sh | 10 +++++-----
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 40a8df4..bad00a7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -173,7 +173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
[[package]]
-name = "clear-river-rust"
+name = "clear-river"
version = "0.1.0"
dependencies = [
"bindgen",
diff --git a/Cargo.toml b/Cargo.toml
index a7d070b..7c547e2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "clear-river-rust"
+name = "clear-river"
version = "0.1.0"
edition = "2021"
diff --git a/start-rust.sh b/start-rust.sh
index d3638fb..dc61344 100755
--- a/start-rust.sh
+++ b/start-rust.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# Launch clear-river-rust with clearwm
+# Launch clear-river with clearwm
# Usage: ./start-rust.sh [--logging] [--debug]
LOGGING=false
@@ -29,17 +29,17 @@ LAUNCH_EOF
chmod +x /tmp/clearwm-rs-launch-rust.sh
if [ "$LOGGING" = true ] || [ "$DEBUG" = true ]; then
- echo "Starting clear-river-rust with clearwm..."
- echo " Logs: /tmp/river-clearwm-rust.log + /tmp/clearwm-\${WAYLAND_DISPLAY}.log"
+ echo "Starting clear-river with clearwm..."
+ echo " Logs: /tmp/river-clearwm.log + /tmp/clearwm-\${WAYLAND_DISPLAY}.log"
if [ "$DEBUG" = true ]; then
echo " Wayland debug logging enabled (WAYLAND_DEBUG=1)"
fi
fi
-# Resolve script directory to reference target/debug/clear-river-rust reliably
+# Resolve script directory to reference target/release/clear-river reliably
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
if [ "$DEBUG" = true ]; then
export WAYLAND_DEBUG=1
fi
-exec "$SCRIPT_DIR/target/release/clear-river-rust" -c /tmp/clearwm-rs-launch-rust.sh 2>/tmp/river-clearwm-rust.log
+exec "$SCRIPT_DIR/target/release/clear-river" -c /tmp/clearwm-rs-launch-rust.sh 2>/tmp/river-clearwm.log