mirror of
https://github.com/talwat/lowfi
synced 2025-09-26 10:20:09 +00:00
* docs: update to be relevant to the current version * chore: bump version * fix: change default progress to 0 why it was ever -1.0 is a mystery to me, it doesn't make any logical sense... * fix: switch from rand to fastrand * feat: prepare for 1.7.0 release docs: explain music situation docs: more internal documentation feat: make timeout configurable chore: clean up some sections of code * fix: use boring fs functions for bookmark loading and writing * chore: remove useless internal doc * chore: bump version
30 lines
960 B
Markdown
30 lines
960 B
Markdown
# Using the chillhop list
|
|
|
|
> [!WARNING]
|
|
> As of lowfi 1.7.0, the chillhop list is included by default. For a more
|
|
> detailed explanation, see [MUSIC.md](MUSIC.md). This document is included
|
|
> to preserve any old links or references. The instructions are still valid.
|
|
|
|
## Linux
|
|
|
|
```sh
|
|
mkdir -p ~/.local/share/lowfi
|
|
curl https://raw.githubusercontent.com/talwat/lowfi/refs/heads/main/data/chillhop.txt -O --output-dir ~/.local/share/lowfi
|
|
```
|
|
|
|
## MacOS
|
|
|
|
```sh
|
|
mkdir -p "$HOME/Library/Application Support/lowfi"
|
|
curl https://raw.githubusercontent.com/talwat/lowfi/refs/heads/main/data/chillhop.txt -O --output-dir "$HOME/Library/Application Support/lowfi"
|
|
```
|
|
|
|
## Windows
|
|
|
|
Go to `%appdata%` in Explorer, then `Roaming`, and make a folder called `lowfi`.
|
|
Then just put [this file](https://raw.githubusercontent.com/talwat/lowfi/refs/heads/main/data/chillhop.txt) in there.
|
|
|
|
## Launching lowfi
|
|
|
|
Once the list has been added, just launch `lowfi` with `-t chillhop`.
|