line lengths
This commit is contained in:
parent
ac32a66597
commit
0cfc79a1c7
|
@ -216,7 +216,8 @@ function install_interactive_myappname {
|
||||||
if [ ${#MY_FUNKY_AVATAR} -gt 3 ]; then
|
if [ ${#MY_FUNKY_AVATAR} -gt 3 ]; then
|
||||||
clear
|
clear
|
||||||
|
|
||||||
# do whatever is needed to change the avatar in your app
|
# do whatever is needed to change the avatar
|
||||||
|
# in your app
|
||||||
|
|
||||||
dialog --title $"Change your avatar" \
|
dialog --title $"Change your avatar" \
|
||||||
--msgbox $"Your avatar has been changed" 6 40
|
--msgbox $"Your avatar has been changed" 6 40
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- 2016-10-12 Wed 17:02 -->
|
<!-- 2016-10-12 Wed 17:05 -->
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title></title>
|
<title></title>
|
||||||
|
@ -245,9 +245,9 @@ for the JavaScript code in this tag.
|
||||||
|
|
||||||
<center><h1>Developers Guide</h1></center>
|
<center><h1>Developers Guide</h1></center>
|
||||||
|
|
||||||
<div id="outline-container-orgb897711" class="outline-2">
|
<div id="outline-container-org792a58f" class="outline-2">
|
||||||
<h2 id="orgb897711">Adding extra apps</h2>
|
<h2 id="org792a58f">Adding extra apps</h2>
|
||||||
<div class="outline-text-2" id="text-orgb897711">
|
<div class="outline-text-2" id="text-org792a58f">
|
||||||
<p>
|
<p>
|
||||||
Suppose you have some internet application which you want to add to the system. To do this you need to create an app script which tells the system how to install/remove and also backup/restore. On an installed system the app scripts go into the directory:
|
Suppose you have some internet application which you want to add to the system. To do this you need to create an app script which tells the system how to install/remove and also backup/restore. On an installed system the app scripts go into the directory:
|
||||||
</p>
|
</p>
|
||||||
|
@ -459,7 +459,8 @@ An example template for an app script is shown below. Copy this and add whatever
|
||||||
<span class="org-keyword">if</span> [ ${#<span class="org-variable-name">MY_FUNKY_AVATAR</span>} -gt 3 ]; <span class="org-keyword">then</span>
|
<span class="org-keyword">if</span> [ ${#<span class="org-variable-name">MY_FUNKY_AVATAR</span>} -gt 3 ]; <span class="org-keyword">then</span>
|
||||||
clear
|
clear
|
||||||
|
|
||||||
<span class="org-comment-delimiter"># </span><span class="org-comment">do whatever is needed to change the avatar in your app</span>
|
<span class="org-comment-delimiter"># </span><span class="org-comment">do whatever is needed to change the avatar</span>
|
||||||
|
<span class="org-comment-delimiter"># </span><span class="org-comment">in your app</span>
|
||||||
|
|
||||||
dialog --title $<span class="org-string">"Change your avatar"</span> <span class="org-sh-escaped-newline">\</span>
|
dialog --title $<span class="org-string">"Change your avatar"</span> <span class="org-sh-escaped-newline">\</span>
|
||||||
--msgbox $<span class="org-string">"Your avatar has been changed"</span> 6 40
|
--msgbox $<span class="org-string">"Your avatar has been changed"</span> 6 40
|
||||||
|
|
Loading…
Reference in New Issue