Dotfiles/bin/.bin/iconProject
2020-04-30 21:31:52 +01:00

12 lines
455 B
Bash
Executable file

#!/usr/bin/env bash
pagesource="$(cat -)"
[ -z "$pagesource" ] && pagesource="$(node /home/jonathan/GitRepos/chrome-curl/index.js "$1")"
echo "$pagesource" |\
#hq '.iconPreview' data
hq '.iconPreview' attr style | # This gets the style attribute from the preview element
cut -d '"' -f 2 | cut -d ',' -f 2 | # Gets the base 64 out that we want
base64 -d | # Decodes it
xclip -selection clipboard -target image/svg+xml -i # Puts it on the clipboard