Files
Alexandru Ardelean fc3999288a sispmctl: update to 4.12
Command-line tool for controlling GEMBIRD SiS-PM USB-controlled power strips.

Changelog: https://sourceforge.net/p/sispmctl/news/

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-05-10 11:32:19 +03:00

12 lines
202 B
Bash

#!/bin/sh
case "$1" in
sispmctl)
# Help output works without a USB device connected
sispmctl -? 2>&1 | grep -qiF "sispmctl"
;;
libsispmctl)
ls /usr/lib/libsispmctl.so.* > /dev/null
;;
esac