diff options
-rw-r--r-- | hook/uname | 4 | ||||
-rw-r--r-- | systemd/uname | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -2,9 +2,9 @@ run_latehook() { if [ -s /new_root/version ]; then - echo " Booting $(cat /new_root/version) with $(uname -srm)." + echo " Booting [1;37m$(cat /new_root/version)[0m with [1;37m$(uname -srm)[0m." else - echo " Booting $(uname -srm)." + echo " Booting [1;37m$(uname -srm)[0m." fi echo } diff --git a/systemd/uname b/systemd/uname index 7143927..293bdfb 100644 --- a/systemd/uname +++ b/systemd/uname @@ -1,4 +1,4 @@ #!/bin/sh -echo " Booting $(uname -srm)." +echo " Booting [1;37m$(uname -srm)[0m." echo |