summaryrefslogtreecommitdiff
path: root/sync.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sync.sh')
-rw-r--r--sync.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/sync.sh b/sync.sh
new file mode 100644
index 0000000..9a46879
--- /dev/null
+++ b/sync.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/env sh
+
+set -e
+
+# Could get this from dt, fixed for now
+GPIO=8
+
+# Headphone detect gpios are exported by default
+value="$(cat /sys/class/gpio/gpio${GPIO}/value)"
+
+if [ "$value" -gt 0 ]; then
+ action=plug
+else
+ action=unplug
+fi
+
+/etc/acpi/audio_jack_plugged_in.sh jack/headphone HEADPHONE $action