-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPapirolas.sh
More file actions
44 lines (29 loc) · 1.16 KB
/
Papirolas.sh
File metadata and controls
44 lines (29 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh
set -x
# =============================================================================
# Variables
# =============================================================================
. ~/CodeLabs/Hochob/Main.sh
export MECCANOID_PID=$$
export MECCANOID_NAME="Meccanoid"
export MECCANOID_PATH=$(readlink -f "$0")
export MECCANOID_DIRECTORY=$(dirname "$MECCANOID_PATH")
# =============================================================================
# Functions
# =============================================================================
# None
# =============================================================================
# Main
# =============================================================================
LogPid.sh $MECCANOID_PID $MECCANOID_NAME
#AmikooCommunication.sh "Amikoo" "Audio" "R2D2AgainSoundBibleCom.mp3"
Vlc.sh ~/HochobServerMedia/Tradition/Amikoo/Sound/R2D2AgainSoundBibleCom.mp3 &
sleep 1
Amikoo.sh amikoo/moveforward && sleep 2
Amikoo.sh amikoo/movestop && sleep .6
Amikoo.sh amikoo/headleft && sleep .6
Amikoo.sh amikoo/headright && sleep .6
sleep 25
Amikoo.sh amikoo/headleft && sleep .6
Amikoo.sh amikoo/headright && sleep .6
# End of File