Files
kobo-config/.adds/scripts/disable_notebook.sh

14 lines
454 B
Bash
Executable File

#!/bin/sh
# Script to disable Kobo notebook functionality.
# This hides the Notebook tab on Kobo Libra Color.
CONFIG_FILE="/mnt/onboard/.kobo/Kobo/Kobo eReader.conf"
# Replace StylusUsageDetected setting if it exists
if grep -q "^StylusUsageDetected=" "$CONFIG_FILE"; then
sed -i 's/^StylusUsageDetected=.*/StylusUsageDetected=false/' "$CONFIG_FILE"
echo "Notebook tab disabled."
else
echo "Could not find StylusUsageDetected. Skipped."
fi