Created
April 2, 2020 17:00
-
-
Save quantum77/a9ff0156675927a65bf9c2262f7d11c6 to your computer and use it in GitHub Desktop.
An extension to Lunar's Tesla scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Allows autosteer at all speeds | |
# Does not disable autopilot nag | |
KEY1="GUI_disableAutosteerRestrictions" | |
KEY2="GUI_handsOnRequirementDisable" | |
WANTSTATE="true" | |
while true; do | |
sdv $KEY1 $WANTSTATE | |
sdv $KEY2 $WANTSTATE | |
echo -n $KEY1= && lv $KEY1 | |
echo -n $KEY2= && lv $KEY2 | |
sleep 60 | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think KEY2 works anymore, right?