1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-30 18:43:17 +00:00
dotfiles/qutebrowser/userscripts/priviblur

12 lines
472 B
Plaintext
Raw Normal View History

2024-06-21 14:39:40 +00:00
#!/usr/bin/fish
set json (trurl --json $QUTE_URL | jq .[].parts)
set blog /(echo $json | jq -r .host | cut -d. -f1)
2024-06-21 14:39:40 +00:00
set page (echo $json | jq -r .path)
set instances https://github.com/syeopite/priviblur/raw/master/instances.md
set instances priviblur.fly.dev (curl -L $instances | grep https | awk -F'[][]' '{print $2}')
set instance (random choice $instances)
if string match '* - Priviblur' $QUTE_TITLE
set blog ''
end
echo "open $instance$blog$page" >> $QUTE_FIFO