From 902c849f229af9814a1272ab0a9d33a3bbf85a86 Mon Sep 17 00:00:00 2001 From: Bad <87938689+yesBad@users.noreply.github.com> Date: Tue, 17 Feb 2026 01:05:30 +0200 Subject: [PATCH] Add vlc-plugin-skins2 to VLC (#623) Without this you cannot use custom themes. PS; Should move neko/apps/vlc to -> neko-apps/vlc --- apps/vlc/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vlc/Dockerfile b/apps/vlc/Dockerfile index 02572d2f..e36b3c2c 100644 --- a/apps/vlc/Dockerfile +++ b/apps/vlc/Dockerfile @@ -4,7 +4,7 @@ FROM $BASE_IMAGE # # install vlc RUN set -eux; apt-get update; \ - apt-get install -y --no-install-recommends openbox vlc; \ + apt-get install -y --no-install-recommends openbox vlc vlc-plugin-skins2; \ # # clean up apt-get clean -y; \