commit f6027483da1e6135969ee05dd7e3170145b0df04
parent 5e664ba04167b5e7f39e7466fc2406d7e6db26de
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 16 Dec 2019 09:49:22 +0100
Read ~/.profile, update license and contact info
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.local/bin/watch.sh b/.local/bin/watch.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-version=1.0
+version=1.0.1
 waitsecs=5
 
 show_help() {
@@ -16,9 +16,9 @@ show_help() {
 
 show_version() {
 	echo "${0##*/} version $version"
-	echo "Licensed under the GNU Public License, v3+"
+	echo "Licensed under the ISC License"
 	echo "written by Anders Damsgaard, anders@adamsgaard.dk"
-	echo "https://gitlab.com/admesg/dotfiles"
+	echo "https://src.adamsgaard.dk/dotfiles"
 }
 
 die() {
@@ -26,7 +26,7 @@ die() {
 	exit 1
 }
 
-[ -f ~/.commands.sh ] && . ~/.commands.sh
+[ -f ~/.profile ] && . ~/.profile
 
 while :; do
 	case "$1" in