Vanilla-OS / vanilla-control-center

This utility allows you to manage Vanilla OS components
GNU General Public License v3.0
26 stars 16 forks source link

Missing container list on VCC #164

Closed D3vil0p3r closed 1 year ago

D3vil0p3r commented 1 year ago

I'm building successful Vanilla Control Center and APX on Arch Linux. When I run vanilla-control-center, the Sub System tab is empty:

image

On the terminal I get the message:

ERROR:Vanilla::Apx:Unable to get containers

It occurs because. when vanilla-control-center is built and installed, it generates correctly the file /usr/lib/apx/distrobox binary, but, since that error is spawned by the /usr/lib/apx/distrobox list command, if I try to run it, it returns:

/usr/lib/apx/distrobox: line 68: /usr/lib/apx/distrobox-list: No such file or directory

So, for allowing it working, in /usr/lib/apx/ folder, the vanilla-control-center building process should create also the following binary in that folder:

distrobox-assemble
distrobox-create
distrobox-enter
distrobox-ephemeral
distrobox-export
distrobox-generate-entry
distrobox-host-exec
distrobox-init
distrobox-list
distrobox-rm
distrobox-stop
distrobox-upgrade

Or better... These files are created already by apx building process but on /usr/share/apx/bin, so it must be the right path that must replace /usr/lib/apx references.