diff options
Diffstat (limited to '.local/bin/timefinder')
-rwxr-xr-x | .local/bin/timefinder | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/timefinder b/.local/bin/timefinder new file mode 100755 index 0000000..2e8544f --- /dev/null +++ b/.local/bin/timefinder @@ -0,0 +1,10 @@ +#!/bin/sh +TIMEZONE=${1:-$(cat /etc/timezone)} + +[ ! -f /usr/share/zoneinfo/${TIMEZONE} ] && echo "invalid zone" && exit 1 + +LOCALE=${2:-en-US} +CHARACTER_SET="[:alnum:]" +read -r -n 10 S < <(LC_ALL=C tr -dc "${CHARACTER_SET}" < /dev/urandom) +echo -n "https://time.turret.cyou/${TIMEZONE}?locale=${LOCALE}&s=${S}" | xclip -in -selection clipboard +xclip -out -selection clipboard && echo |