ironbar/README.md

83 lines
2.9 KiB
Markdown
Raw Normal View History

2022-08-14 16:30:13 +03:00
# Ironbar
Ironbar is a customisable and feature-rich bar targeting wlroots compositors, written in Rust.
2022-08-14 16:30:13 +03:00
It uses GTK3 and gtk-layer-shell.
The bar can be styled to your liking using CSS and hot-loads style changes.
2022-08-14 16:30:13 +03:00
For information and examples on styling please see the [wiki](https://github.com/JakeStanger/ironbar/wiki).
2022-08-14 16:36:43 +03:00
![Screenshot of fully configured bar with MPD widget open](https://user-images.githubusercontent.com/5057870/184539623-92d56a44-a659-49a9-91f9-5cdc453e5dfb.png)
2022-08-14 16:30:13 +03:00
## Installation
2022-08-15 02:03:04 +03:00
Run using `ironbar`.
### Cargo
2022-08-14 16:30:13 +03:00
> ⚠ The Cargo version is currently outdated due to restrictions around publishing crates with patched dependencies.
2022-08-14 16:30:13 +03:00
```sh
cargo install ironbar
```
[crate](https://crates.io/crates/ironbar)
### Arch Linux
```sh
yay -S ironbar-git
```
[aur package](https://aur.archlinux.org/packages/ironbar-git)
### Source
```sh
git clone https://github.com/jakestanger/ironbar.git
cd ironbar
cargo build --release
# change path to wherever you want to install
install target/release/ironbar ~/.local/bin/ironbar
```
[repo](https://github.com/jakestanger/ironbar)
2022-08-14 16:30:13 +03:00
## Configuration
Ironbar gives a lot of flexibility when configuring, including multiple file formats
and options for scaling complexity: you can use a single config across all monitors,
or configure different/multiple bars per monitor.
2022-08-14 16:30:13 +03:00
A full configuration guide can be found [here](https://github.com/JakeStanger/ironbar/wiki/configuration-guide).
2022-08-14 16:30:13 +03:00
## Styling
To get started, create a stylesheet at `.config/ironbar/style.css`. Changes will be hot-reloaded every time you save the
file.
2022-08-14 16:30:13 +03:00
A full styling guide can be found [here](https://github.com/JakeStanger/ironbar/wiki/styling-guide).
2022-08-14 16:30:13 +03:00
## Project Status
This project is in alpha, but should be usable.
Everything that is implemented works and should be documented.
Proper error handling is in place so things should either fail gracefully with detail, or not fail at all.
There is currently room for lots more modules, and lots more configuration options for the existing modules.
The current configuration schema is not set in stone and breaking changes could come along at any point;
until the project matures I am more interested in ease of use than backwards compatibility.
2022-08-14 16:30:13 +03:00
A few bugs do exist, and I am sure there are plenty more to be found.
2022-08-14 16:30:13 +03:00
The project will be *actively developed* as I am using it on my daily driver.
2022-08-14 16:30:13 +03:00
Bugs will be fixed, features will be added, code will be refactored.
## Contribution Guidelines
Please check [here](https://github.com/JakeStanger/ironbar/blob/master/CONTRIBUTING.md).
2022-08-14 16:30:13 +03:00
## Acknowledgements
- [Waybar](https://github.com/Alexays/Waybar) - A lot of the initial inspiration, and a pretty great bar.
2022-08-14 16:36:43 +03:00
- [Rustbar](https://github.com/zeroeightysix/rustbar) - Served as a good demo for writing a basic GTK bar in Rust
- [Smithay Client Toolkit](https://github.com/Smithay/client-toolkit) - Essential in being able to communicate to Wayland