瀏覽代碼

Add Spyder Colorimeter Driver Installation

Script to install the Spyder2 driver systemwide from the CVSpyder.dll
file using Argyll's oeminst tool
master
Nate Bohman 3 年之前
父節點
當前提交
bedc051703
簽署人: Nate Bohman <natrinicle@gmail.com> GPG Key ID: C10546A54ABA1CE5
共有 1 個文件被更改,包括 17 次插入0 次删除
  1. +17
    -0
      bin/install-spyder.sh

+ 17
- 0
bin/install-spyder.sh 查看文件

@@ -0,0 +1,17 @@
#!/usr/bin/env bash

# Install the Spyder2 Colorimeter driver from the Windows DLL

CVSPYDER_DLL=$1

if [ ! -f "$(which oeminst)" ]l then
echo "Missing oeminst binary that comes from Argyll packaage."
exit 1
fi

if [ ! -f "${CVSPYDER_DLL}" ]; then
echo "Pass path to CVSpyder.dll as first argument"
exit 1
fi

sudo oeminst -s l ${CVSPYDER_DLL}

Loading…
取消
儲存