Skip to content

Instantly share code, notes, and snippets.

@quantum77
Created April 2, 2020 17:00
Show Gist options
  • Save quantum77/a9ff0156675927a65bf9c2262f7d11c6 to your computer and use it in GitHub Desktop.
Save quantum77/a9ff0156675927a65bf9c2262f7d11c6 to your computer and use it in GitHub Desktop.
An extension to Lunar's Tesla scripts
#!/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
@AnalyticETH
Copy link

I don't think KEY2 works anymore, right?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment