소스 검색

Different logo style in the shell

Bob Mottram 7 년 전
부모
커밋
2c73ce7733
2개의 변경된 파일17개의 추가작업 그리고 18개의 파일을 삭제
  1. 10
    12
      src/freedombone-image-customise
  2. 7
    6
      src/freedombone-utils-login

+ 10
- 12
src/freedombone-image-customise 파일 보기

238
     if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
238
     if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
239
         # change the motd to show further install instructions
239
         # change the motd to show further install instructions
240
         echo $"
240
         echo $"
241
- .---.                  .              .
242
- |                      |              |
243
- |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
244
- |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
245
- '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
241
+       _____               _           _
242
+      |   __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
243
+      |   __|  _| -_| -_| . | . |     | . | . |   | -_|
244
+      |__|  |_| |___|___|___|___|_|_|_|___|___|_|_|___|
246
 
245
 
247
-                    Initial base install
246
+                                   Initial base install
248
 
247
 
249
 Your system is not yet installed. To complete the process run the
248
 Your system is not yet installed. To complete the process run the
250
 following commands, then enter your details.
249
 following commands, then enter your details.
255
 " > "$rootdir/etc/motd"
254
 " > "$rootdir/etc/motd"
256
     else
255
     else
257
         echo $"
256
         echo $"
258
- .---.                  .              .
259
- |                      |              |
260
- |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
261
- |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
262
- '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
257
+       _____               _           _
258
+      |   __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
259
+      |   __|  _| -_| -_| . | . |     | . | . |   | -_|
260
+      |__|  |_| |___|___|___|___|_|_|_|___|___|_|_|___|
263
 
261
 
264
-                    Freedom in the Mesh
262
+                                    Freedom in the Mesh
265
 " > "$rootdir/etc/motd"
263
 " > "$rootdir/etc/motd"
266
     fi
264
     fi
267
 }
265
 }

+ 7
- 6
src/freedombone-utils-login 파일 보기

38
         rm -f /etc/init.d/motd
38
         rm -f /etc/init.d/motd
39
     fi
39
     fi
40
 
40
 
41
-    { echo ".---.                  .              .                   ";
42
-      echo "|                      |              |                   ";
43
-      echo "|--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-. ";
44
-      echo "|    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-' ";
45
-      echo "'    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'";
46
-      echo $'                  Freedom in the Cloud';
41
+    { echo '    _____               _           _';
42
+      echo '   |   __|___ ___ ___ _| |___ _____| |_ ___ ___ ___';
43
+      echo '   |   __|  _| -_| -_| . | . |     | . | . |   | -_|';
44
+      echo '   |__|  |_| |___|___|___|___|_|_|_|___|___|_|_|___|';
45
+      echo '';
46
+      echo $'                                Freedom in the Cloud';
47
       echo ''; } > /etc/motd
47
       echo ''; } > /etc/motd
48
+
48
     mark_completed "${FUNCNAME[0]}"
49
     mark_completed "${FUNCNAME[0]}"
49
 }
50
 }
50
 
51