소스 검색

use xsel to copy otp so gmrun can be used

Casey DeLorme 2 년 전
부모
커밋
d1e3aa5861
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      install/usr/local/bin/otp

+ 3 - 1
install/usr/local/bin/otp

@@ -3,4 +3,6 @@ if [ -z "TOTP" ]; then
 	echo "please export TOTP with your authentication code"
 	exit 1
 fi
-oathtool --base32 --totp "$TOTP"
+OTP=$(oathtool --base32 --totp "$TOTP")
+echo "$OTP" | xsel -ib
+echo "$OTP"