Skip to content

Commit fa3fd33

Browse files
committed
v0.5.0
1 parent 0113538 commit fa3fd33

3 files changed

Lines changed: 12 additions & 7 deletions

File tree

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,22 @@ Zigbar is my personal ZSH prompt written in [Zig](https://ziglang.org).
44

55
<img alt="screenshot of Zigbar prompt in a terminal" src=".github/screenshot.avif" width="640">
66

7-
From the blog: ["I built a ZSH Prompt with Zig"](https://dbushell.com/2025/03/05/zig-zsh-prompt/)
7+
From the blog:
88

9-
⚠️ Work in progress! ⚠️
9+
* ["I built a ZSH Prompt with Zig"](https://dbushell.com/2025/03/05/zig-zsh-prompt/)
10+
* ["Zig App Release and Updates via Github"](https://dbushell.com/2025/03/18/zig-app-release-and-updates-via-github/)
1011

11-
## Configuration
12+
This is a hobby project for me to learn Zig software development.
1213

13-
To customise the prompt edit the source code and recompile!
14+
## 🚧 Under Construction!
15+
16+
I'm working on new features as I use the prompt day-to-day.
17+
18+
There is no config unless you edit the source code and recompile!
1419

1520
## Notes
1621

17-
Inspired by [Starship](https://github.com/starship/starship) and [Pure](https://github.com/sindresorhus/pure). Requires a [Nerd Font](https://www.nerdfonts.com).
22+
Inspired by [Starship](https://github.com/starship/starship) and [Pure](https://github.com/sindresorhus/pure).
1823

1924
* * *
2025

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const std = @import("std");
22
// const zon: struct { version: []const u8 } = @import("./build.zig.zon");
33

44
const name = "zigbar";
5-
const version = std.SemanticVersion.parse("0.4.0") catch unreachable;
5+
const version = std.SemanticVersion.parse("0.5.0") catch unreachable;
66

77
const targets: []const std.Target.Query = &.{
88
.{ .cpu_arch = .aarch64, .os_tag = .macos },

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .zigbar,
3-
.version = "0.4.0",
3+
.version = "0.5.0",
44
.fingerprint = 0xa016003a8035f03b,
55
.minimum_zig_version = "0.14.0",
66
.paths = .{

0 commit comments

Comments
 (0)