scre.git

sman.sh

espurr
#!/bin/sh
# sman - non-free package detector
# Copyright (C) 2021-2023 ArcNyxx <me@arcnyxx.net>
# see LICENCE file for licensing information

FILE=`mktemp`
curl -s "https://git.parabola.nu/blacklist.git/plain/blacklist.txt" \
	"https://git.parabola.nu/blacklist.git/plain/aur-blacklist.txt" >$FILE
pacman -Qq | while read PACK ; do grep "^$PACK:" $FILE ; done
rm "$FILE"