Compare commits

...

2 Commits

Author SHA1 Message Date
6c7aee7b93 Added litractl for controlling Litra Glow
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2022-04-01 16:11:01 +01:00
1313900363 Updated GPG
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2022-04-01 16:10:41 +01:00
3 changed files with 44 additions and 1 deletions

41
home/.bin/litractl Executable file
View File

@@ -0,0 +1,41 @@
#!/usr/bin/env bash
source .utils
set -e
if [ -z `which hidapitester` ]; then
bold "hidapitester command not found"
echo "Download from https://github.com/todbot/hidapitester"
exit 1
fi
print_usage() {
blue "litractl - Control Litra Glow"
echo " "
underline "Usage:"
echo "litractl [on / off]"
}
POS_ARGS=()
while test $# -gt 0; do
case "$1" in
-h|--help)
print_usage
exit 0
;;
*)
POS_ARGS+=(`echo $1`)
shift
;;
esac
done
if [[ "${POS_ARGS[0]}" == "on" ]]; then
italic "Turning Litra Glow on... "
hidapitester --vidpid 046D/C900 --open --length 20 --send-output 0x11,0xff,0x04,0x1c,0x01 &>/dev/null
elif [[ "${POS_ARGS[0]}" == "off" ]]; then
italic "Turning Litra Glow off... "
hidapitester --vidpid 046D/C900 --open --length 20 --send-output 0x11,0xff,0x04,0x1c &>/dev/null
else
print_usage
fi

View File

@@ -62,3 +62,5 @@
insteadOf = https://github.com
[pull]
rebase = false
[gpg]
program = /opt/homebrew/bin//gpg

View File

@@ -1 +1 @@
pinentry-program /usr/local/bin/pinentry-mac
pinentry-program /opt/homebrew/bin//pinentry-mac