bb/scripts/bbstartup

17 lines
485 B
Bash
Executable File

#!/bin/sh
# This file contains the script that is run when bb launches
# Delay running command-line commands (bb +<cmd>) until after startup:
tmpfile="$(mktemp "${TMPDIR-/tmp}/bb-cmdline-XXXXXX")"
trap 'cat "$tmpfile" >> "$BBCMD"; rm -f "$tmpfile"' EXIT
mv "$BBCMD" "$tmpfile"
# Create bb data dir:
[ ! -d "$XDG_DATA_HOME/bb" ] && mkdir -p "$XDG_DATA_HOME/bb"
# Load key bindings
bbkeys
# Reload settings
[ -e "$XDG_DATA_HOME/bb/settings.sh" ] && . "$XDG_DATA_HOME/bb/settings.sh"