diff options
| author | Timmy Keller <tjk@tjkeller.xyz> | 2021-10-20 21:18:23 -0500 | 
|---|---|---|
| committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-10-20 21:18:23 -0500 | 
| commit | 3a023e896f797912732a3bf59dd7c17a10231537 (patch) | |
| tree | be7963fb53d3c2e1e2ace8969bfdf917c905111d | |
| parent | ec64def6f6db99a7981c1665fb55eabb226ec827 (diff) | |
| download | scripts-3a023e896f797912732a3bf59dd7c17a10231537.tar.xz scripts-3a023e896f797912732a3bf59dd7c17a10231537.zip  | |
test commit from griff
| -rwxr-xr-x | launch/launch | 13 | ||||
| -rwxr-xr-x | sync/griff | 8 | 
2 files changed, 4 insertions, 17 deletions
diff --git a/launch/launch b/launch/launch index 9a63cbf..c943822 100755 --- a/launch/launch +++ b/launch/launch @@ -37,19 +37,6 @@ case "`hostname`" in  			*) launchother $@ ;;  		esac  	;; -	openbsdx230) -		case "$1" in -			brave) -			;; -			chromium|chrome) -			;; -			halt|off|poweroff|shutdown) doas halt ;; -			sleep|suspend|zzz) doas zzz ;; -			reboot|res|restart) doas reboot ;; -			snes|snes9x) snes9x-gtk $args ;; -			*) launchother $@ ;; -		esac -	;;  	librex60)  		case "$1" in  			brave) iceweasel ;; @@ -26,12 +26,12 @@ for repo in $repos; do  			echo "$GRN[Repo $name is unchanged!]$NORM"  		else  			echo "$CYN[Repo $name has changed:]$NORM" -			echo "\tFiles Changed:" -			git diff HEAD $REF -- $DIR | sed -n '/^+++/ s/+++ b\//\t- /p' -			echo +			git status | grep -v '(use'  			read -p "Would you like to view the changes? [y/n]: " viewchange  			case $viewchange in -				y|yes|Y|Yes) 	git diff HEAD $REF -- $DIR	;; +				y|yes|Y|Yes) +					git diff HEAD $REF -- $DIR +				;;  			esac  			read -p "Would you like to push these changes? [y/n]: " pushchange  			case $pushchange in  | 
