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