XR for Universal Blue and Fedora Atomic Desktops
vr fedora-atomic linux
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

envision/pkg-install: install from staged path

+10
+10
envision/pkg-install.nu
··· 2 2 # SPDX-License-Identifier: AGPL-3.0-only 3 3 # SPDX-FileCopyrightText: MatrixFurry <matrix@matrixfurry.com> 4 4 5 + use std log 6 + 5 7 def main [ 6 8 --uninstall (-u) 9 + staged_path?: string 7 10 ] { 8 11 if not $uninstall { 12 + if ($staged_path | is-empty) { 13 + error make {msg: "please provide a path to the extracted archive"} 14 + } 15 + 16 + cd $staged_path 17 + log info $"Installing from (pwd)" 18 + 9 19 ./Envision-x86_64.AppImage --appimage-extract 10 20 11 21 open squashfs-root/org.gabmus.envision.Devel.desktop