Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Haze <hazeone@users.noreply.github.com>
30 lines
816 B
Bash
30 lines
816 B
Bash
#!/bin/bash
|
|
|
|
# Post-installation script for ClawX on Linux
|
|
|
|
set -e
|
|
|
|
# Update desktop database
|
|
if command -v update-desktop-database &> /dev/null; then
|
|
update-desktop-database -q /usr/share/applications || true
|
|
fi
|
|
|
|
# Update icon cache
|
|
if command -v gtk-update-icon-cache &> /dev/null; then
|
|
gtk-update-icon-cache -q /usr/share/icons/hicolor || true
|
|
fi
|
|
|
|
# Create symbolic link for ClawX app binary
|
|
if [ -x /opt/ClawX/clawx ]; then
|
|
ln -sf /opt/ClawX/clawx /usr/local/bin/clawx 2>/dev/null || true
|
|
fi
|
|
|
|
# Create symbolic link for openclaw CLI
|
|
OPENCLAW_WRAPPER="/opt/ClawX/resources/cli/openclaw"
|
|
if [ -f "$OPENCLAW_WRAPPER" ]; then
|
|
chmod +x "$OPENCLAW_WRAPPER" 2>/dev/null || true
|
|
ln -sf "$OPENCLAW_WRAPPER" /usr/local/bin/openclaw 2>/dev/null || true
|
|
fi
|
|
|
|
echo "ClawX has been installed successfully."
|