app
The Headless Deskman
Public Unreviewedby barrett-land
A browser desktop for a headless Adom container. Runs Xvfb+fluxbox+x11vnc+noVNC inside the container and maps a *.adom.cloud port so any browser (or a Hydrogen webview tab) shows the container's GUI — no SSH tunnel, no local viewer. The container hosts the page itself. (Formerly Headview.)
#!/bin/sh
# The Headless Deskman uninstall — remove the CLI from PATH.
set -e
for d in /usr/local/bin "$HOME/.local/bin"; do
for b in headless-deskman headview; do # headview: pre-0.2.0 name
if [ -e "$d/$b" ]; then
if [ -w "$d" ]; then rm -f "$d/$b"
elif command -v sudo >/dev/null 2>&1; then sudo rm -f "$d/$b"
fi
echo "removed $d/$b"
fi
done
done
echo "uninstalled headless-deskman"