Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
feat: add a justfile for convenience (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
castrojo authored Mar 16, 2023
1 parent a54b693 commit bd8e1ad
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions etc/justfile
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

0 comments on commit bd8e1ad

Please sign in to comment.