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 |
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 | |
cidIp="192.168.90.100" | |
cidPort="4070" | |
# shellcheck disable=SC2154 | |
mainPath="$homeOfLunars/scripts" | |
pattern=AccessPopup | |
last_command="NoNe" | |
if ps ax | grep "$0" | grep -v $$ | grep bash | grep -v grep; then | |
echo "The script is already running." |