gitconfig update; fix a case statement in dotwrynscwrypts

This commit is contained in:
Wryn (yage) Wagner 2025-02-21 15:59:14 -07:00
parent 5276d2fb79
commit 3264693663
Signed by: wrynegade
SSH Key Fingerprint: SHA256:zBGO05Uz1oT7pnehoPelgUmYX632oFjt3MBH0MlEvrs
2 changed files with 17 additions and 10 deletions

View File

@ -45,6 +45,13 @@
[gpg "ssh"]
program = /opt/1Password/op-ssh-sign
allowedSignersFile = /home/w0ryn/.ssh/allowed_signers
[commit]
gpgsign = true
[tag]
gpgsign = true
[format]
signoff = true

View File

@ -55,20 +55,20 @@ MAIN() {
while [[ $# -gt 0 ]]
do
case $1 in
-c | --client ) CLIENT_CLASS="$2"; shift 1 ;;
-x | --x-offset ) XFFSET=$2; shift 1 ;;
-y | --y-offset ) YFFSET=$2; shift 1 ;;
-s | --scale ) SCALE=$2; shift 1 ;;
( -c | --client ) CLIENT_CLASS="$2"; shift 1 ;;
( -x | --x-offset ) XFFSET=$2; shift 1 ;;
( -y | --y-offset ) YFFSET=$2; shift 1 ;;
( -s | --scale ) SCALE=$2; shift 1 ;;
-a | --always-launch ) ALWAYS_LAUNCH=1 ;;
-n | --no-resize ) RESIZE=0 ;;
-l | --no-center ) MOVE=0 ;;
( -a | --always-launch ) ALWAYS_LAUNCH=1 ;;
( -n | --no-resize ) RESIZE=0 ;;
( -l | --no-center ) MOVE=0 ;;
--has-statusbar-icon ) MIN_ACTIVE=2 ;;
( --has-statusbar-icon ) MIN_ACTIVE=2 ;;
-h | --help ) USAGE; exit 0 ;;
( -h | --help ) USAGE; exit 0 ;;
* )
( * )
[ ! $APPLICATION ] && APPLICATION="$1" \
|| ERROR "extra positional argument '$1'"
esac