mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
11 lines
196 B
Bash
11 lines
196 B
Bash
#!/bin/bash
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if gpg --card-status &> /dev/null; then
|
|
user=" $(gpg --card-status | grep 'Login data' | awk '{print $NF}')";
|
|
else
|
|
user=" Disconnected"
|
|
fi
|
|
|
|
echo $user
|