Moves binaries for use with gnu stow
This commit is contained in:
parent
f528ba793c
commit
4fd9f4809b
89 changed files with 0 additions and 0 deletions
13
bin/.bin/xkcd
Executable file
13
bin/.bin/xkcd
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/bash
|
||||
comic=$1
|
||||
if [[ "$comic" == "" ]]; then
|
||||
json=$(curl https://xkcd.com/info.0.json 2> /dev/null)
|
||||
elif [[ "$comic" == "random" ]] || [[ "$comic" == "r" ]]; then
|
||||
latest=$(curl https://xkcd.com/info.0.json 2> /dev/null | /usr/bin/jq ".num")
|
||||
number=$(shuf -i1-$latest -n1)
|
||||
json=$(curl https://xkcd.com/$number/info.0.json 2> /dev/null)
|
||||
else
|
||||
json=$(curl https://xkcd.com/$comic/info.0.json 2> /dev/null)
|
||||
fi
|
||||
echo $json | /usr/bin/jq -C
|
||||
echo $json | /usr/bin/jq ".img" | xargs feh
|
Loading…
Add table
Add a link
Reference in a new issue