bb/bbstartup.sh

18 lines
621 B
Bash
Raw Normal View History

#!/bin/sh
# This file contains the script that is run when bb launches
# See API.md for details on bb's command API.
# Load key bindings
# first check ~/.config/bb/bindings.bb, then /etc/xdg/bb/bindings.bb, then ./bindings.bb
[ ! -d "$XDG_DATA_HOME/bb" ] && mkdir -p "$XDG_DATA_HOME/bb"
if [ "$BBPATH" ]; then
cat "$BBPATH/bindings.bb" 2>/dev/null
2019-11-06 08:22:12 -08:00
else
cat "$sysconfdir/xdg/bb/bindings.bb" "$XDG_CONFIG_HOME/bb/bindings.bb" 2>/dev/null
fi | awk '/^#/ {next} /^[^ ]/ {printf "\0bind:"} {print $0} END {printf "\0"}' >> "$BBCMD"
if [ -e "$XDG_DATA_HOME/bb/state.sh" ]; then
. "$XDG_DATA_HOME/bb/state.sh"
2019-11-06 08:22:12 -08:00
fi