6 lines
289 B
Bash
6 lines
289 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Bring the standard reMarkable GUI back after running Chatter.
|
||
|
|
set -euo pipefail
|
||
|
|
ssh chatter 'systemctl stop chatter 2>/dev/null; systemctl reset-failed chatter 2>/dev/null; systemctl start xochitl'
|
||
|
|
echo "chatter stopped; xochitl restarted — standard GUI restored."
|