diff options
| author | Blake Romero <blake@blkrom.com> | 2024-11-07 15:01:03 +0000 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2024-11-07 15:01:03 +0000 |
| commit | 21ff6f8e1bf8ec829d05d020262f7432c468d7d5 (patch) | |
| tree | e654ea5ebc581059f1e98cff753833550f7e5dcd | |
| parent | e70527e0cbbc08c5488e1cfe341381f433700d6c (diff) | |
Move shell environment variables into dot-profile
| -rw-r--r-- | dot-bash_profile | 9 | ||||
| -rw-r--r-- | dot-profile | 36 |
2 files changed, 39 insertions, 6 deletions
diff --git a/dot-bash_profile b/dot-bash_profile index ea1d13b..d00ae65 100644 --- a/dot-bash_profile +++ b/dot-bash_profile @@ -1,11 +1,8 @@ #!/bin/bash + # -# ~/.bash_profile +# BASH PROFILE # +[[ -f ~/.profile ]] && source ~/.profile [[ -f ~/.bashrc ]] && source ~/.bashrc - -# Variables -export EDITOR=vim -export VISUAL=vim -export LESSHISTFILE=/dev/null diff --git a/dot-profile b/dot-profile new file mode 100644 index 0000000..46ce84d --- /dev/null +++ b/dot-profile @@ -0,0 +1,36 @@ +# vim: ft=sh + +# +# PROFILE +# + +# Add scripts to PATH +[ -d ~/repos/scripts ] && PATH="$PATH:~/repos/scripts" + +# Variables +export EDITOR=vim +export VISUAL=vim +export LESSHISTFILE=/dev/null + +# +# BEMENU +# + +fg='#eeeeee' +bg='#000000' +mg='#111111' +hl='#31748f' + +export BEMENU_OPTS=" +-is -W .5 -H20 -l10 -B2 -R5 -p> \ +--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 +" |
