xdg-sanity/xdg-sanity/extensions/youtube-replace.sample

13 lines
202 B
Plaintext
Raw Normal View History

2022-09-03 07:35:42 +00:00
#!/bin/sh
# EXT-TYPE=replace
2022-09-03 07:35:42 +00:00
2022-09-04 01:26:23 +00:00
TEST=$(echo $1 | sed -ne 's/^h.\+\/\///p' | sed -e 's/\/.*\+//g')
2022-09-04 01:26:23 +00:00
if [ "$TEST" = "youtube.com" ]
then
echo $1 | sed -ne 's/youtube.com/piped.mint.lgbt/p'
else
echo $1
fi