aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot-bash_profile9
-rw-r--r--dot-profile36
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
+"