Reverted back to FontAwesome workspace icons

Like the cleaner look of uniform coloring. Also added pywal bg color to
Benq blocks except for CPU usage, which has Perl problems....
This commit is contained in:
2018-12-06 21:37:16 -05:00
parent 7de5620da5
commit 2b55781ab8
13 changed files with 81 additions and 46 deletions

View File

@@ -200,6 +200,7 @@ alias gstr="git config credential.helper store"
# add {{{ #
alias ga="git add -A . && gs"
alias gac="git add -A . && git commit -S"
alias gacu="git add -A . && git commit"
# }}} add #
# diff/log {{{ #
@@ -222,13 +223,14 @@ alias gheadm1="git reset --hard HEAD~1"
alias gls="git ls-tree -r HEAD --name-only"
# push {{{ #
alias vgc="ni commit-msg.txt"
alias vcm="ni commit-msg.txt"
alias gst="git stash"
alias gstp="git stash pop"
alias gc="git commit -S"
alias gcam="ga && git commit --amend --no-edit"
alias gcamp="ga && git commit --amend --no-edit && gpsf"
alias gcu="git commit"
alias gcam="ga && git commit --amend --no-edit -S"
alias gcamp="ga && git commit --amend --no-edit -S && gpsf"
# todo: fix
function gcm(){ echo git commit -m \""$1"\" ; }