Revision 3577d0b1de1ac147c1710524517c563b2bfe231c authored by Ronald Burkey on 30 May 2021, 19:14:00 UTC, committed by GitHub on 30 May 2021, 19:14:00 UTC
Issue 1143: Fix various symbol name and other minor typos
2 parent s bc21d6b + 8d274f6
Raw File
auto.sh
#!/bin/bash
# This script is intended to be used to autostart runPiDSKY2.sh upon
# Raspberry Pi power-up.  It is assumed that the desktop is automatically
# logged in.  Then, assuming this script is in /home/pi/virtualagc/piPeripheral/,
# the line
#
#	@/home/pi/virtualagc/piPeripheral/auto.sh
#
# should be added to the end of the file
#
#	/home/pi/.config/lxsession/LXDE-pi/autostart

cd /home/pi/virtualagc/piPeripheral
xterm -fullscreen  -e ./runPiDSKY2.sh --custom-bare --pigpio=7 --playback &
back to top