You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please note that this internal ethernet interface is required for various services including touchid that there currently is no Linux support for. In the future, if any of these services are supported, you'll need to undo this.
144
144
145
+
# How to use old touchbar driver
146
+
147
+
Some users want to use `apple-touchbar` driver instead of `tiny-dfr`, here's how to do so:
148
+
149
+
1. Create and edit the script file: `switch-touchbar-drv.sh`
150
+
151
+
2. Paste this content:
152
+
153
+
```bash
154
+
#!/bin/bash
155
+
156
+
# Switching to root
157
+
sudo $0
158
+
159
+
if [ "$EUID" -ne 0 ]; then
160
+
exit 1
161
+
fi
162
+
163
+
# Detecting Package Manager
164
+
PM_INSTALL=""
165
+
PM_REMOVE="null"
166
+
167
+
if apt --help >/dev/null 2>&1; then
168
+
echo "Debian-based OS are not supported!"
169
+
echo "Please use 'sudo touchbar --switch' instead."
0 commit comments