commit e09276087e53b80eada7b8eab340ecb516848b48 parent 3b20862503d875db1ae5ccfaa873e7b5089502a4 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Sun, 16 Jun 2019 19:24:46 +0200 Update suckless tools, update x colors, update gcagp_all_sl function Diffstat:
M | .Xresources | | | 4 | ++-- |
M | .commands.sh | | | 8 | +++++--- |
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/.Xresources b/.Xresources @@ -5,8 +5,8 @@ Xcursor.size: 16 ! terminal colors ------------------------------------------------------------ ! see https://ciembor.github.io/4bit -*.foreground: #4d4d4c -*.background: #ffffff +*.foreground: #c5c8c6 +*.background: #1d1f21 /* black */ *color0: #434944 diff --git a/.commands.sh b/.commands.sh @@ -193,10 +193,12 @@ gcagp_all_sl() { msg="Update color scheme" read -r "input?commit message [$msg]: " msg="${input:-$msg}" - git add .Xresources - git commit -m "$msg" --verbose --gpg-sign && git push; - for d in ~/.local/lib/dwm ~/.local/lib/st ~/.local/lib/surf ~/.local/lib/tabbed; do + dotfiles add .Xresources + dotfiles commit -m "$msg" --verbose --gpg-sign && git push; + for d in ~/.local/lib/dwm ~/.local/lib/st ~/.local/lib/surf \ + ~/.local/lib/tabbed; do cd "$d" && \ + git branch && \ git commit --all -m "$msg" --verbose --gpg-sign && git push; cd - || return done