-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.4.3: Experimental child widgets inside boxes
- Loading branch information
vars1ty
committed
Feb 4, 2023
1 parent
c1fd5c6
commit 9d428d4
Showing
14 changed files
with
270 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "hybrid-bar" | ||
authors = [ "varsity <[email protected]>" ] | ||
version = "0.4.2" | ||
version = "0.4.3" | ||
edition = "2021" | ||
description = "A simple status bar made for wlroots compositors." | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Experimental Features | ||
> **Warning**: Experimental features are under development. They may break, change or be removed entirely. | ||
1. Widgets inside boxes | ||
- Introduced in version `0.4.3` | ||
- New key inside the `box` widget: `widgets` | ||
```json | ||
{ | ||
"left-box_my_box": { | ||
"width": 20, | ||
"widgets": { | ||
"label_experimental": { | ||
"text": "Experimental" | ||
} | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.