Application Launcher written in Zig
Files | Log | Commits | Refs | README
Author: SM
Date: 2025-09-05
Subject: cleanup
commit 092489f42d891b919f371038efa29aa2d1513ed1 Merge: 8a17cd6 6821fd7 Author: SM <seb.michalk@gmail.com> Date: Fri Sep 5 10:53:24 2025 +0200 cleanup diff --cc src/main.zig index fbb8aef,8bdb2fa..7e3603b --- a/src/main.zig +++ b/src/main.zig @@@ -11,11 -11,11 +11,11 @@@ const c = @import("c.zig") const font_size = 25.0; const bh = 30; const max_text_len = 256; -const font = "Commit Mono"; -const prompt = ">_"; +const font = "Liberation Mono"; +const prompt = "launch:"; const colors = struct { - // Standard 16-color VGA palette + const black = [3]f64{ 0.0, 0.0, 0.0 }; // Color 0 const blue = [3]f64{ 0.0, 0.0, 0.67 }; // Color 1 const green = [3]f64{ 0.0, 0.67, 0.0 }; // Color 2 @@@ -33,9 -33,8 +33,8 @@@ const yellow = [3]f64{ 1.0, 1.0, 0.33 }; // Color 14 const white = [3]f64{ 1.0, 1.0, 1.0 }; // Color 15 - // Application-specific color assignments const background = black; - const foreground = cyan; + const foreground = white; const selected = yellow; const ghost = dark_gray; };