blob: 054c7d6072a2d9f6c35ba19a0ebd8b0922fb6c13 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/env bash
sel=$(ykman oath accounts list | dmenu)
code=$(ykman oath accounts code "$sel" | awk '{print $NF}')
printf "%s" "$code" | clip
notify-send "$sel" "$code" &
|