moved into scripts/bbstartup and scripts/bbbindkeys alongside the other scripts. Some minor bugs have been fixed as well, and a few bindings added.
12 lines
255 B
Bash
Executable File
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
|