From 7fc957b02f4c9bbea88eed554142a996f269e6d1 Mon Sep 17 00:00:00 2001 From: NN708 Date: Tue, 7 Apr 2026 04:17:21 +0000 Subject: [PATCH 1/4] feat: remove ikaros link --- recipe.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipe.yml b/recipe.yml index 90ce777..162f007 100644 --- a/recipe.yml +++ b/recipe.yml @@ -132,10 +132,8 @@ stages: commands: # host-shell links - ln -s /usr/bin/host-shell /usr/bin/apx - - ln -s /usr/bin/host-shell /usr/bin/ikaros - ln -s /usr/bin/host-shell /usr/bin/vanilla-sideload - chmod +x /usr/bin/apx - - chmod +x /usr/bin/ikaros - chmod +x /usr/bin/vanilla-sideload # custom binaries From 90e13b48460ce83a08ba94c3b6f11a86d7fe730c Mon Sep 17 00:00:00 2001 From: NN708 Date: Tue, 7 Apr 2026 04:17:59 +0000 Subject: [PATCH 2/4] feat: remove distrobox link --- .../usr/share/apx/distrobox/gen-distrobox-links | 7 ------- recipe.yml | 3 --- 2 files changed, 10 deletions(-) delete mode 100644 includes.container/usr/share/apx/distrobox/gen-distrobox-links diff --git a/includes.container/usr/share/apx/distrobox/gen-distrobox-links b/includes.container/usr/share/apx/distrobox/gen-distrobox-links deleted file mode 100644 index cd0b668..0000000 --- a/includes.container/usr/share/apx/distrobox/gen-distrobox-links +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -targets="distrobox distrobox-host-exec distrobox-assemble distrobox-init distrobox-create distrobox-list distrobox-enter distrobox-rm distrobox-ephemeral distrobox-stop distrobox-export distrobox-upgrade distrobox-generate-entry" -for target in $targets; do - echo "#!/bin/sh" > /usr/share/apx/distrobox/$target - echo "host-spawn /usr/share/apx/distrobox/$target \$@" >> /usr/share/apx/distrobox/$target - chmod +x /usr/share/apx/distrobox/$target -done diff --git a/recipe.yml b/recipe.yml index 162f007..f54d61d 100644 --- a/recipe.yml +++ b/recipe.yml @@ -157,9 +157,6 @@ stages: - chmod +x /usr/bin/os-shell - chmod +x /usr/bin/host-shell - # distrobox links - - sh /usr/share/apx/distrobox/gen-distrobox-links - - name: cleanup type: shell commands: From ab502997f1351e11d9de0f0ac934477901bfec90 Mon Sep 17 00:00:00 2001 From: NN708 Date: Tue, 7 Apr 2026 04:19:25 +0000 Subject: [PATCH 3/4] feat: symlink for vso --- includes.container/usr/bin/vso | 16 ---------------- recipe.yml | 3 ++- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 includes.container/usr/bin/vso diff --git a/includes.container/usr/bin/vso b/includes.container/usr/bin/vso deleted file mode 100644 index 58d8681..0000000 --- a/includes.container/usr/bin/vso +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -use_pkexec=0 - -# if the 1st argument is sys-upgrade, then we enable pkexec -if [ "$1" == "sys-upgrade" ]; then - use_pkexec=1 -fi - -if [ "$use_pkexec" == "1" ]; then - # it is a privileged command, so we use pkexec - host-shell pkexec /usr/bin/vso "$@" -else - # it does not need to be privileged, so we just run it - host-shell /usr/bin/vso "$@" -fi \ No newline at end of file diff --git a/recipe.yml b/recipe.yml index f54d61d..927db5e 100644 --- a/recipe.yml +++ b/recipe.yml @@ -133,12 +133,13 @@ stages: # host-shell links - ln -s /usr/bin/host-shell /usr/bin/apx - ln -s /usr/bin/host-shell /usr/bin/vanilla-sideload + - ln -s /usr/bin/host-shell /usr/bin/vso - chmod +x /usr/bin/apx - chmod +x /usr/bin/vanilla-sideload + - chmod +x /usr/bin/vso # custom binaries - chmod +x /usr/bin/abroot - - chmod +x /usr/bin/vso # core binaries - rm /usr/sbin/shutdown From b769b7f8595d25d6735a07247fcad12c7215be9c Mon Sep 17 00:00:00 2001 From: NN708 Date: Tue, 7 Apr 2026 04:20:26 +0000 Subject: [PATCH 4/4] feat: remove unnecessary os-release --- includes.container/etc/os-release | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 includes.container/etc/os-release diff --git a/includes.container/etc/os-release b/includes.container/etc/os-release deleted file mode 100644 index 370382b..0000000 --- a/includes.container/etc/os-release +++ /dev/null @@ -1,11 +0,0 @@ -PRETTY_NAME="Vanilla OS 2.0" -NAME="Vanilla OS" -VERSION_ID="2.0" -VERSION="2.0 Orchid" -VERSION_CODENAME="orchid" -ID=vanilla -ID_LIKE=debian -HOME_URL="https://vanillaos.org" -SUPPORT_URL="https://vanillaos.org/help" -BUG_REPORT_URL="https://github.com/vanilla-os" -PRIVACY_POLICY_URL="https://vanillaos.org/os-privacy-policy" \ No newline at end of file