#status-bar #string #blocks #dynamic #interface #style #bars

abar

An interface for creating dynamic, "blocks"-style status strings

8 releases (4 breaking)

0.6.2 Dec 21, 2021
0.6.1 Dec 9, 2021
0.5.0 Oct 21, 2021
0.4.0 Sep 17, 2021
0.2.2 Sep 13, 2021

#625 in GUI

Custom license

32KB
758 lines

abar - An asynchronous bar!

abar is a tool for generating dynamic "blocks"-style status strings.

When using minimalistic status bars, you'll generally define a number of modules and then stick them together somehow. For instance, your bar might look a bit like this:

>>> VOLUME | BATTERY | CURRENT_TIME <<<

This can come with a performance hit, however, as normally you'd have to update everything all at once. Every time you want to refresh the battery, you'd also have to refresh the volume, etc. This might seem fine, but if you ever want to rely upon something slow (such as an HTTP request) your entire bar will slow to a crawl. abar solves this problem by giving each module its own unique update cycle, monitored by a small thread pool.

What's different from other blocks-style implementations?

abar takes inspiration from the tools you might see over at suckless.org in that it's designed to be hackable. There's no configuration file, and instead the idea is that you modify your bar by directly toying with the source code.

dwmblocks is a project with a similar goal. It's pretty good, but abar differs in a few ways:

  1. abar is available as both a library and a binary. This means that you can either modify a fork of this repository, or create an entirely new project using the interface available on crates.io.

  2. In general, dwmblocks focuses more on integration with shell scripts, while abar focuses more on the customisability offered by direct access to the source code. You can still use bash, but it's not the primary goal here. As it's in Rust, You also get access to the cargo package manager, which can allow a newcomer to do some very advanced things relatively easily.

  3. There's a much bigger focus on remote interaction. In dwmblocks, you refresh blocks using SIGKILL, while in abar you can send arbitrary commands over TCP via the command line.

Installation

Running cargo install --path . from the source directory will install the binary, while automatically pulling any dependencies you've defined in ./Cargo.toml

Usage

The main "configuration" happens in ./src/config.rs, which contains some examples to guide you through the basics. That being said, I strongly recommend "looking under the hood" and finding something to tinker with.

More specific info can be found in the documentation.

Dependencies

~140KB