From 07642c2f43167d13b51ef3b29fa0679908fa8d93 Mon Sep 17 00:00:00 2001 From: Arcitec <38923130+Arcitec@users.noreply.github.com> Date: Wed, 10 May 2023 20:07:28 +0200 Subject: [PATCH] fix!: move justfile to standardized location --- README.md | 8 +++++--- {etc => usr/share/ublue-os/just}/justfile | 0 2 files changed, 5 insertions(+), 3 deletions(-) rename {etc => usr/share/ublue-os/just}/justfile (100%) diff --git a/README.md b/README.md index c696b308cd..d9e31060cb 100644 --- a/README.md +++ b/README.md @@ -97,9 +97,11 @@ The `latest` tag will automatically point to the latest build. That build will s ## Just -The `just` task runner is included in main for further customization after first boot. -You can copy the justfile from `/usr/etc/justfile` to `~/.justfile` to get started. Once `just` supports [include directives](https://just.systems/man/en/chapter_52.html), you can just include the file in `/etc` into your own justfile, where you have the option of adding new tasks. -After that run the following commands: +The `just` task runner is included in `main` for further customization after first boot. + +You can copy the justfile from `/usr/share/ublue-os/just/justfile` to `~/.justfile` to get started. When `just` supports [include directives](https://just.systems/man/en/chapter_52.html), you will instead be able to simply include that path into your own justfile, without having to copy it manually. + +After doing that, you'll be able to run the following commands: - `just` - Show all tasks, more will be added in the future - `just bios` - Reboot into the system bios (Useful for dualbooting) diff --git a/etc/justfile b/usr/share/ublue-os/just/justfile similarity index 100% rename from etc/justfile rename to usr/share/ublue-os/just/justfile