diff options
author | Tom Gundersen <teg@jklm.no> | 2010-09-13 18:27:36 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-13 19:19:54 +0200 |
commit | 17dbb83deef352bbea93b4143cc6c38dbce707be (patch) | |
tree | 35e1783415105137850aae8b65c5b5b1326b84ac /src/util.c | |
parent | 5a6225fd2e3f60ff304f4d005600a9fec5b10b74 (diff) |
util: add Arch welcome message
Arch has no release name, so juts prints 'Welcome to Arch Linux!'.
The color is the same as used by Arch's native rc.sysinit.
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c index b4beb2d796..93f982e8bc 100644 --- a/src/util.c +++ b/src/util.c @@ -2859,6 +2859,8 @@ void status_welcome(void) { status_printf("Welcome to Debian \x1B[1;31m%s\x1B[0m!\n", r); /* Light Red for Debian */ free(r); +#elif defined(TARGET_ARCH) + status_printf("Welcome to \x1B[1;36mArch Linux\x1B[0m!\n"); /* Cyan for Arch */ #else #warning "You probably should add a welcome text logic here." #endif |