From 0f1df0db903ba576fd17b08197d3066af7a61e5f Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 18 Nov 2023 23:23:40 +0100 Subject: A lot of changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- check-installed | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 check-installed (limited to 'check-installed') diff --git a/check-installed b/check-installed new file mode 100755 index 0000000..19cc204 --- /dev/null +++ b/check-installed @@ -0,0 +1,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 2>/dev/null -- cgit v1.2.3-70-g09d2