Fix bar assumptions and add tmon alias

This commit is contained in:
Daniel Flanagan 2017-05-03 14:13:49 -05:00
parent 1fe37ad51f
commit 4914bc72b8
2 changed files with 1 additions and 6 deletions

View file

@ -14,12 +14,6 @@ if [ -f "$HOME/.env_bspwm" ]; then
source "$HOME/.env_bspwm"
fi
# old colors
# bspc config normal_border_color "#$(get_color 05)"
# bspc config focused_border_color "#$(get_color 0D)"
# bspc config active_border_color "#$(get_color 0D)"
# bspc config presel_feedback_color "#$(get_color 0D)"
bspc config normal_border_color "$(xrdb -query | sed -ne 's/.*background:\s*//p')"
bspc config focused_border_color "$(xrdb -query | sed -ne 's/.*color0\?4:\s*//p')"
bspc config active_border_color "$(xrdb -query | sed -ne 's/.*color0\?4:\s*//p')"

View file

@ -46,6 +46,7 @@ alias tmls="tmux list-sessions"
alias tmatt="tmux attach -t"
alias tu="tmux attach -t utils || tmux new -s utils"
alias tdf="tmux attach -t df || tmux new -s df -c \"$DOTFILES_PATH\""
alias tmon="tmux attach -t mon || tmux new -s mon"
# git aliases
alias gs="git status"