This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
forked from ublue-os/bluefin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add a justfile for convenience (#38)
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
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,30 @@ | ||
default: | ||
@just --list | ||
|
||
bios: | ||
systemctl reboot --firmware-setup | ||
|
||
changelogs: | ||
rpm-ostree db diff --changelogs | ||
|
||
distrobox-boxkit: | ||
echo 'Creating Boxkit distrobox ...' | ||
distrobox create --image ghcr.io/ublue-os/boxkit -n boxkit -Y | ||
|
||
distrobox-debian: | ||
echo 'Creating Debian distrobox ...' | ||
distrobox create --image quay.io/toolbx-images/debian-toolbox:unstable -n debian -Y | ||
|
||
distrobox-opensuse: | ||
echo 'Creating openSUSE distrobox ...' | ||
distrobox create --image quay.io/toolbx-images/opensuse-toolbox:tumbleweed -n opensuse -Y | ||
|
||
distrobox-ubuntu: | ||
echo 'Creating Ubuntu distrobox ...' | ||
distrobox create --image quay.io/toolbx-images/ubuntu-toolbox:22.04 -n ubuntu -Y | ||
|
||
update: | ||
rpm-ostree update | ||
flatpak update -y | ||
distrobox upgrade -a | ||
|