diff options
| author | Blake Romero <blake@developercraft.com> | 2025-10-29 15:21:36 +0000 |
|---|---|---|
| committer | Blake Romero <blake@developercraft.com> | 2025-10-29 15:21:36 +0000 |
| commit | 4969574928c6ed5d11a55310226d561b15466e99 (patch) | |
| tree | c4235fdc638e4a7e37755f99f70ba7d34c8efef0 /bash_profile | |
| parent | 888240a48d89d410044e802a9d3af5f8b063c2b0 (diff) | |
Diffstat (limited to 'bash_profile')
| -rw-r--r-- | bash_profile | 37 |
1 files changed, 31 insertions, 6 deletions
diff --git a/bash_profile b/bash_profile index 9dc0667..ff2b42a 100644 --- a/bash_profile +++ b/bash_profile @@ -3,10 +3,8 @@ # BASH PROFILE # -# Helper Functions -exists() { - command -v $1 >/dev/null 2>&1 -} +# Load bashrc +[[ -f ~/.bashrc ]] && source ~/.bashrc # Custom Scripts scripts="~/repos/scripts" @@ -38,5 +36,32 @@ export LESS_TERMCAP_se=$'\e[0m' # end standout-mode export LESS_TERMCAP_us=$'\e[1;37m' # start underlining export LESS_TERMCAP_ue=$'\e[0m' # end underline -# Load bashrc -[[ -f ~/.bashrc ]] && source ~/.bashrc +# BEMENU +if exists bemenu; then + fg="#eeeeee" + bg="#000000" + mg="#111111" + hl="#00ffff" + export BEMENU_OPTS=" + --fn 'Hack Nerd Font' \ + --ignorecase \ + --no-spacing \ + --width-factor 0.4 \ + --line-height 20 \ + --list 10 \ + --border 2 \ + --border-radius 5 \ + --prompt '>' \ + --scroll always \ + --single-instance \ + --bdr $hl \ + --tb $mg --tf $hl \ + --cb $fg --cf $fg \ + --nb $bg --nf $fg \ + --hb $hl --hf $bg \ + --fb $mg --ff $fg \ + --sb '#00ff00' --sf '#0000ff' \ + --ab $bg --af $fg \ + --scb $bg --scf $hl + " +fi |
