This script and configuration makes the status bar only show when a command is being entered or the page is being loaded.
#!/bin/sh SHOW_STATUS=$8 if [ -n "$9" ] then SHOW_STATUS=1 fi echo "set show_status = $SHOW_STATUS" > $4
@on_event KEY_PRESS spawn @scripts_dir/auto-status.sh 0 \@keycmd\@keycmd_prompt @on_event LOAD_PROGRESS spawn @scripts_dir/auto-status.sh 1 \@keycmd\@keycmd_prompt @on_event LOAD_FINISH spawn @scripts_dir/auto-status.sh 0 \@keycmd\@keycmd_prompt