From fa92d4019db4a25de9b07cac9bb0d9cc7c6e6131 Mon Sep 17 00:00:00 2001 From: lina Date: Mon, 15 Jan 2024 16:40:36 +0100 Subject: [PATCH] modif vscodium_install.sh --- install.sh | 32 ++++++++++++++++---------------- scripts/vscodium_install.sh | 9 +++++++-- 2 files changed, 23 insertions(+), 18 deletions(-) diff --git a/install.sh b/install.sh index f373a3a..f12d803 100755 --- a/install.sh +++ b/install.sh @@ -24,14 +24,14 @@ wget -P ~/Téléchargements/ https://download.virtualbox.org/virtualbox/6.1.48/v sudo apt-get install git wget curl net-tools nmap htop gparted python3-pip zip openssh-server gimp wireguard vlc nginx -y #SOURCES LIST -echo "\n -███████╗ ██████╗ ██╗ ██╗██████╗ ██████╗███████╗███████╗ ██╗ ██╗███████╗████████╗ -██╔════╝██╔═══██╗██║ ██║██╔══██╗██╔════╝██╔════╝██╔════╝ ██║ ██║██╔════╝╚══██╔══╝ -███████╗██║ ██║██║ ██║██████╔╝██║ █████╗ ███████╗ ██║ ██║███████╗ ██║ -╚════██║██║ ██║██║ ██║██╔══██╗██║ ██╔══╝ ╚════██║ ██║ ██║╚════██║ ██║ -███████║╚██████╔╝╚██████╔╝██║ ██║╚██████╗███████╗███████║██╗███████╗██║███████║ ██║ -╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝╚══════╝╚═╝╚══════╝╚═╝╚══════╝ ╚═╝" -./scripts/sources.list_install.sh +# echo "\n +# ███████╗ ██████╗ ██╗ ██╗██████╗ ██████╗███████╗███████╗ ██╗ ██╗███████╗████████╗ +# ██╔════╝██╔═══██╗██║ ██║██╔══██╗██╔════╝██╔════╝██╔════╝ ██║ ██║██╔════╝╚══██╔══╝ +# ███████╗██║ ██║██║ ██║██████╔╝██║ █████╗ ███████╗ ██║ ██║███████╗ ██║ +# ╚════██║██║ ██║██║ ██║██╔══██╗██║ ██╔══╝ ╚════██║ ██║ ██║╚════██║ ██║ +# ███████║╚██████╔╝╚██████╔╝██║ ██║╚██████╗███████╗███████║██╗███████╗██║███████║ ██║ +# ╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝╚══════╝╚═╝╚══════╝╚═╝╚══════╝ ╚═╝" +# ./scripts/sources.list_install.sh # BASHRC echo "\n @@ -54,14 +54,14 @@ echo "\n ./scripts/tabby_install.sh # STEAM -echo "\n -███████╗████████╗███████╗ █████╗ ███╗ ███╗ -██╔════╝╚══██╔══╝██╔════╝██╔══██╗████╗ ████║ -███████╗ ██║ █████╗ ███████║██╔████╔██║ -╚════██║ ██║ ██╔══╝ ██╔══██║██║╚██╔╝██║ -███████║ ██║ ███████╗██║ ██║██║ ╚═╝ ██║ -╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝" -./scripts/steam_install.sh +# echo "\n +# ███████╗████████╗███████╗ █████╗ ███╗ ███╗ +# ██╔════╝╚══██╔══╝██╔════╝██╔══██╗████╗ ████║ +# ███████╗ ██║ █████╗ ███████║██╔████╔██║ +# ╚════██║ ██║ ██╔══╝ ██╔══██║██║╚██╔╝██║ +# ███████║ ██║ ███████╗██║ ██║██║ ╚═╝ ██║ +# ╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝" +# ./scripts/steam_install.sh # VIRTUALBOX echo "\n diff --git a/scripts/vscodium_install.sh b/scripts/vscodium_install.sh index 7aab38c..9c2adc1 100755 --- a/scripts/vscodium_install.sh +++ b/scripts/vscodium_install.sh @@ -1,5 +1,10 @@ #!/bin/bash # INSTALL VSCODIUM FOR DEBIAN 12 -sudo apt update -y -sudo apt install codium \ No newline at end of file +sudo apt update -y +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 +sudo apt update && sudo apt install codium \ No newline at end of file