aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mutt/default2
-rwxr-xr-xtools/git/check-repos.sh2
-rwxr-xr-xtools/wiki/diary2
3 files changed, 3 insertions, 3 deletions
diff --git a/mutt/default b/mutt/default
index 5b43aff..d30c299 100644
--- a/mutt/default
+++ b/mutt/default
@@ -145,7 +145,7 @@ color tilde white black
145color message cyan black 145color message cyan black
146color markers red black 146color markers red black
147color attachment brightred black 147color attachment brightred black
148color search brightblack white 148color search black red
149color status brightwhite black 149color status brightwhite black
150color indicator white blue 150color indicator white blue
151color tree magenta black # arrows in threads 151color tree magenta black # arrows in threads
diff --git a/tools/git/check-repos.sh b/tools/git/check-repos.sh
index e6f3b6c..5180fc9 100755
--- a/tools/git/check-repos.sh
+++ b/tools/git/check-repos.sh
@@ -28,7 +28,7 @@ while read repo remote; do
28 changes="$(git -c color.status=always status --short)" 28 changes="$(git -c color.status=always status --short)"
29 29
30 # Diff between from local repo and remote 30 # Diff between from local repo and remote
31 cherry="$(git cherry)" 31 cherry="$([ -n "`git remote`" ] && git cherry)"
32 32
33 if [[ $COUNT_ONLY == true ]]; then 33 if [[ $COUNT_ONLY == true ]]; then
34 # If '-n' is specified, only count repo with changes/local-diff 34 # If '-n' is specified, only count repo with changes/local-diff
diff --git a/tools/wiki/diary b/tools/wiki/diary
index ce7a5be..3995ecf 100755
--- a/tools/wiki/diary
+++ b/tools/wiki/diary
@@ -1,6 +1,6 @@
1#! /bin/bash 1#! /bin/bash
2 2
3today=~/log/diary/$(date --iso-8601).md 3today=~/log/`date +%y.w%W.md`
4 4
5specify_date() { 5specify_date() {
6 YEAR=${YEAR:-22} 6 YEAR=${YEAR:-22}