Skip to content

Commit d877044

Browse files
committed
[CHORE:FMT] format + fix readme links
1 parent 78661d5 commit d877044

3 files changed

Lines changed: 13 additions & 7 deletions

File tree

File renamed without changes.

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ make buildx-dbg
140140
> As long as your distribution can install & build the requirements, there should *NOT* be any issue
141141
>
142142
143-
Check out [BUILD.md](https://github.com/nots1dd/inLimbo/BUILD.md) for more options to build targets
143+
Check out [BUILD.md](https://github.com/nots1dd/inLimbo/blob/main/BUILD.md) for more options to build targets
144144

145145
## **RUNNING**
146146

@@ -198,7 +198,7 @@ Although more is to come for this, the architecture is made in such a way that t
198198
So currently for example, the `cmdline` frontend is super dynamic and can be hot-reloaded meanwhile, `raylib` is just a proof of concept.
199199
The config and the app itself is just to show how multiple frontends can exist for inLimbo. (config is statically compiled)
200200

201-
Check out [example config file](https://github.com/nots1dd/inLimbo/examples/config/config.toml)
201+
Check out [example config file](https://github.com/nots1dd/inLimbo/blob/main/examples/config/config.toml)
202202

203203
### **Config 1.1: Library Sorting**
204204

@@ -218,13 +218,13 @@ Now each field has certain criteria upon which the map is reordered.
218218
2. Album: `Lexicographically Ascending/Descending (ASCII only)`, `Track Count Ascending/Descending`
219219
3. Track: `Track Number Ascending/Descending`
220220

221-
These are self-explanatory and easy to understand what each sort does. You can check out [example config.toml](https://github.com/nots1dd/inLimbo/examples/config/config.toml) for how to customize each sort.
221+
These are self-explanatory and easy to understand what each sort does. You can check out [example config.toml](https://github.com/nots1dd/inLimbo/blob/main/examples/config/config.toml) for how to customize each sort.
222222

223223
You can set each field as however you desire and `inLimbo-core` is made in such a way that it supports **runtime change** of the sorting "plan".
224224

225225
This isn't to say there won't be more options coming (ex: Artist sorted by `Year Ascending/Descending`, etc.) but those are not a top priority at the moment and with the initial groundwork setup, I make it easy to add new sorting plans to the codebase without too many changes.
226226

227-
If you are wondering how to integrate this into the frontend, I will have a blog / doc coming up on it but for now I suggest looking at the `cmdline` frontend code here: [Frontend Interface (cmdline)](https://github.com/nots1dd/inLimbo/src/frontend/cmdline/Interface.cc)
227+
If you are wondering how to integrate this into the frontend, I will have a blog / doc coming up on it but for now I suggest looking at the `cmdline` frontend code here: [Frontend Interface (cmdline)](https://github.com/nots1dd/inLimbo/blob/main/src/frontend/cmdline/Interface.cc)
228228

229229
> [!NOTE]
230230
>
@@ -321,6 +321,12 @@ The core philosophy of inLimbo can be primarily summarized in:
321321
But most of all, since my goal with this project is for me to use it myself, I can only guarantee
322322
my very best effort was given in making this happen.
323323

324+
## **CONTRIBUTING**
325+
326+
The project is yet to be released as stable software, but contributions are much appreciated!
327+
328+
Check out [CONTRIBUTION GUIDE](https://github.com/nots1dd/inLimbo/CONTRIBUTING.md)
329+
324330
## **CREDITS**
325331

326332
**LOGO**:
@@ -331,7 +337,7 @@ It is a basic stock image found online. I got it from [here](https://unsplash.co
331337

332338
1. **TOML PARSER: TOML++**:
333339

334-
To parse the [config.toml](https://github.com/nots1dd/inlimbo/blob/main/src/parser/examples/config.toml) is thanks to [TOML++](https://github.com/marzer/tomlplusplus)
340+
To parse the [config.toml](https://github.com/nots1dd/inlimbo/blob/main/examples/config/config.toml) is thanks to [TOML++](https://github.com/marzer/tomlplusplus)
335341

336342
2. **Command Line Parsing (Arguments): CLI11**:
337343

src/frontend/ftxui/ui/screens/Main.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ auto MainScreen::render() -> Element
117117
m_audioPtr->getCurrentMetadata(), !m_state.focusOnArtists());
118118
}
119119

120-
auto term = Terminal::Size();
121-
const int half_width = term.dimx / 2;
120+
auto term = Terminal::Size();
121+
const int half_width = term.dimx / 2;
122122

123123
auto artist_inner = window(text(" Artists ") | bold, artist_view->Render() | frame | flex) |
124124
size(WIDTH, EQUAL, half_width);

0 commit comments

Comments
 (0)