From 99057a5791e74b5479e02456e0f56d84365a09d9 Mon Sep 17 00:00:00 2001 From: Francesco Basile <59255877+parmigggiana@users.noreply.github.com> Date: Mon, 4 Nov 2024 10:11:32 +0100 Subject: [PATCH] fix codium and fd --- chroot_scripts/10-software_installation.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/chroot_scripts/10-software_installation.sh b/chroot_scripts/10-software_installation.sh index 29d6d83..87c47ce 100755 --- a/chroot_scripts/10-software_installation.sh +++ b/chroot_scripts/10-software_installation.sh @@ -17,6 +17,15 @@ apt-get -qq -o Dpkg::Use-Pty=false -y update >/dev/null # Upgrade and install useful packages apt-get -qq -o Dpkg::Use-Pty=false -y upgrade >/dev/null + +# Add vscodium repository +wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \ + | gpg --dearmor \ + | sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg +echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main' \ + | sudo tee /etc/apt/sources.list.d/vscodium.list + + # libxkbcommon-x11-0 may be not needed (see Add library to installation if needed #28) apt-get -qq -o Dpkg::Use-Pty=false -y install \ alsa-firmware-loaders \ @@ -31,6 +40,7 @@ apt-get -qq -o Dpkg::Use-Pty=false -y install \ dmidecode \ dnsutils \ eject \ + fd-find \ firefox-esr \ firmware-linux \ firmware-bnx2 \ @@ -81,7 +91,6 @@ apt-get -qq -o Dpkg::Use-Pty=false -y install \ libxcb-cursor0 \ ripgrep \ rsync \ - rust-fd-find \ smartmontools \ strace \ sudo \