-
-
Save AnalyticETH/94e47d34596c74383dd5cae71aff9def 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