This file contains hidden or 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/bash | |
| WPA_SUPPLICANT_CONF="/etc/wpa_supplicant/wpa_supplicant.conf" | |
| # this funcion is called once the connection is established, | |
| # in this case a boot sound will be played to notify the user that everything is ready. | |
| function connected { | |
| aplay /root/Windows3.1.wav 2>&1 >/dev/null & | |
| } |