Fix awk command because of change in xkcd source

This commit is contained in:
flyingscorpio@arch-desktop 2021-08-23 09:53:36 +02:00
parent 08f7029cb4
commit 78697220eb

View file

@ -1,3 +1,3 @@
#!/bin/sh
curl -s "$(curl -sL https://c.xkcd.com/random/comic | grep 'Image URL' | awk '{print $5}')" -o ~/Pictures/xkcd-wallpaper.png
curl -s "$(curl -sL https://c.xkcd.com/random/comic | grep 'Image URL' | awk -F\" '{print $2}')" -o ~/Pictures/xkcd-wallpaper.png