33 lines
963 B
Bash
Executable File
33 lines
963 B
Bash
Executable File
#!/bin/sh
|
|
# This file contains the script that is run when bb launches
|
|
# See API.md for details on bb's API.
|
|
|
|
# Default XDG values
|
|
[ ! "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME=~/.config
|
|
[ ! "$sysconfdir" ] && sysconfdir=/etc
|
|
|
|
# Create some default marks:
|
|
mkdir -p "$XDG_CONFIG_HOME/bb/marks"
|
|
mark() {
|
|
ln -sT "$2" "$XDG_CONFIG_HOME/bb/marks/$1" 2>/dev/null
|
|
}
|
|
mark home ~
|
|
mark root /
|
|
mark config "$XDG_CONFIG_HOME"
|
|
mark marks "$XDG_CONFIG_HOME/bb/marks"
|
|
|
|
# Set viewing options
|
|
bb +sort:+n
|
|
bb +col:'*smpn'
|
|
|
|
# Load key bindings
|
|
# first check ~/.config/bb/bindings.bb, then /etc/xdg/bb/bindings.bb, then ./bindings.bb
|
|
if [ -e "$XDG_CONFIG_HOME/bb/bindings.bb" ]; then
|
|
cat "$XDG_CONFIG_HOME/bb/bindings.bb"
|
|
elif [ -e "$sysconfdir/xdg/bb/bindings.bb" ]; then
|
|
cat "$sysconfdir/xdg/bb/bindings.bb"
|
|
elif [ -e bindings.bb ]; then
|
|
cat bindings.bb
|
|
fi | sed -e '/^#/d' -e "s/^[^ ]/$(printf '\034')+bind:\\0/" | tr '\034' '\0' >> "$BBCMD"
|
|
printf '\0' >> "$BBCMD"
|