aboutsummaryrefslogtreecommitdiffstats
path: root/check-installed
blob: 19cc2046253c6260eae78f355302846649bb7bf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -ue

if test -r /etc/lsb-release; then
	. /etc/lsb-release
fi
if test -r ~/.dotfiles/.work/distrib-tweak; then
	. ~/.dotfiles/.work/distrib-tweak
fi

for pkg; do
	if test "${DISTRIB_ID}" = Arch; then
		pacman -Qq -- "$pkg"
	elif test "${DISTRIB_ID}" = Ubuntu; then
		test "$pkg" = base || dpkg -s -- "$pkg"
	else
		false
	fi
done </dev/null >/dev/null 2>/dev/null