fix: Add new just restructuring to the deck just file

This commit is contained in:
Kyle Gospodnetich 2024-01-20 00:27:50 -08:00
parent 7827fb19f8
commit 87bb7a34b5

View File

@ -458,8 +458,10 @@ install-scrcpy: distrobox-check-fedora
# Install OpenTabletDriver, an open source, cross-platform, user-mode tablet driver
install-opentabletdriver:
#!/usr/bin/bash
source /usr/lib/ujust/ujust.sh
if grep -qvz "arch" <<< $(distrobox list); then \
distrobox-create --nvidia --image ghcr.io/ublue-os/arch-distrobox:latest -n arch -Y; \
Assemble noconfirmcreate "" "arch"; \
fi && \
distrobox enter -n arch -- ' paru -S opentabletdriver --noconfirm' && \
mkdir -p ~/.config/systemd/user/ && \
@ -506,7 +508,8 @@ restore-gnome-folders:
[private]
distrobox-check-fedora:
#!/bin/env bash
source /usr/lib/ujust/ujust.sh
if grep -qvz "fedora" <<< $(distrobox list); then
echo "Setting up Fedora distrobox"
/usr/bin/ujust distrobox-fedora
Assemble noconfirmcreate "" "fedora"
fi