From 67896a891bec5064fc603792cf161e5e38dbac05 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 28 Jul 2022 17:13:30 +0200 Subject: Add config options for ssh agent and bashboard --- bash/board.bash | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'bash/board.bash') diff --git a/bash/board.bash b/bash/board.bash index dfee05f..4df9f2a 100644 --- a/bash/board.bash +++ b/bash/board.bash @@ -1,14 +1,15 @@ #!/bin/bash -BB_HIST_DIR="$HOME/.cache/bashboard/" -BB_SHORTCUT=() -BB_LIST_LEN=5 -BB_PRUNE_DAYS=5 +# config in ~/.files.config + +if [ "$BB_ENABLE"="yes" ]; then + return +fi [ ! -d "$BB_HIST_DIR" ] && mkdir -p "$BB_HIST_DIR" -BB_COLOR_HIGHLIGHT="\e[0;34m" -BB_COLOR_RESET="\e[39m" +# Public var, not config +BB_SHORTCUT=() # format # NUM EPOCH PATH -- cgit v1.2.3