bb/scripts/bbstartup
Bruce Hill e0a30fe02b Some overhaul and refactoring. bbstartup.sh and bindings.bb have been
moved into scripts/bbstartup and scripts/bbbindkeys alongside the other
scripts. Some minor bugs have been fixed as well, and a few bindings
added.
2020-04-08 23:58:37 -07:00

12 lines
255 B
Bash
Executable File

#!/bin/sh
# This file contains the script that is run when bb launches
[ ! -d "$XDG_DATA_HOME/bb" ] && mkdir -p "$XDG_DATA_HOME/bb"
# Load key bindings
bbbindkeys
if [ -e "$XDG_DATA_HOME/bb/settings.sh" ]; then
. "$XDG_DATA_HOME/bb/settings.sh"
fi