cli: Add in easter egg with ascii art from @rednur01

Co-authored-by: Zabir Nur <41484948+rednur01@users.noreply.github.com>
This commit is contained in:
Uzair Aftab
2024-10-03 21:55:14 +02:00
parent e78a56a033
commit 48b3ba6bd0
3 changed files with 32 additions and 0 deletions

View File

@ -12,6 +12,7 @@ const list_actions = @import("list_actions.zig");
const show_config = @import("show_config.zig");
const validate_config = @import("validate_config.zig");
const crash_report = @import("crash_report.zig");
const boo = @import("boo.zig");
/// Special commands that can be invoked via CLI flags. These are all
/// invoked by using `+<action>` as a CLI flag. The only exception is
@ -47,6 +48,9 @@ pub const Action = enum {
// List, (eventually) view, and (eventually) send crash reports.
@"crash-report",
// 👻
boo,
pub const Error = error{
/// Multiple actions were detected. You can specify at most one
/// action on the CLI otherwise the behavior desired is ambiguous.
@ -139,6 +143,7 @@ pub const Action = enum {
.@"show-config" => try show_config.run(alloc),
.@"validate-config" => try validate_config.run(alloc),
.@"crash-report" => try crash_report.run(alloc),
.boo => try boo.run(alloc),
};
}

15
src/cli/boo.zig Normal file
View File

@ -0,0 +1,15 @@
const std = @import("std");
const Allocator = std.mem.Allocator;
const GHOST_ASCII_ART = @embedFile("ghost_ascii.txt");
/// Spooky time
pub fn run(alloc: Allocator) !u8 {
_ = alloc;
const stdout = std.io.getStdOut().writer();
try stdout.writeAll(GHOST_ASCII_ART);
return 0;
}

12
src/cli/ghost_ascii.txt Normal file
View File

@ -0,0 +1,12 @@
⠀⠀⠀⠀⣠⣴⣶⣿⣿⣿⣿⣿⣿⣷⣶⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⢀⣾⣿⣿⣿⡿⠟⠿⢿⣿⣿⣿⡿⠟⠿⢿⣿⣿⣿⡄
⣼⣿⣿⣿⡏⠀⠀⠀⠀⢻⣿⡏⠀⠀⠀⠀⢻⣿⣿⣿⠀
⣿⣿⣿⣿⠀⠀⠀⣾⣿⡆⣿⠀⠀⠀⣾⣿⡆⣿⣿⣿⡇
⣿⣿⣿⣿⡄⠀⠀⠙⠛⢱⣿⡄⠀⠀⠙⠛⢱⣿⣿⣿⡇
⣿⣿⣿⣿⣿⣦⣄⣠⣴⣿⣿⣿⣦⣄⣠⣴⣿⣿⣿⣿⡇
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⠀⠀
⣿⣿⣿⣿⠁⠀⠀⠘⣿⣿⣿⣿⠏⠀⠀⠀⢻⣿⣿⣿⡇⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠀
⠿⣿⡿⠇⠀⠀⠀⠀⠻⣿⣿⠟⠀⠀⠀⠀⠘⢿⣿⡿⠃⠀⠘⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠀