From bd8e1ad74c4b29cbc247f932a6cf834b2ed5df3e Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Thu, 16 Mar 2023 12:37:43 -0400 Subject: [PATCH] feat: add a justfile for convenience (#38) --- etc/justfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 etc/justfile diff --git a/etc/justfile b/etc/justfile new file mode 100644 index 00000000000..6e56ab8739f --- /dev/null +++ b/etc/justfile @@ -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 +