Fixing bug

This commit is contained in:
araison 2024-01-21 21:43:37 +01:00
parent eeb302c70d
commit 76b72f0083
6 changed files with 45 additions and 22 deletions

View file

@ -1,3 +1,3 @@
sudo add-apt-repository ppa:mozillateam/ppa
sudo apt update
sudo apt install firefox
sudo apt install -y firefox

View file

@ -1,5 +1,5 @@
/usr/lib/apt/apt-helper download-file https://debian.sur5r.net/i3/pool/main/s/sur5r-keyring/sur5r-keyring_2023.02.18_all.deb keyring.deb SHA256:a511ac5f10cd811f8a4ca44d665f2fa1add7a9f09bef238cdfad8461f5239cc4
$ sudo apt install ./keyring.deb
$ echo "deb http://debian.sur5r.net/i3/ $(grep '^DISTRIB_CODENAME=' /etc/lsb-release | cut -f2 -d=) universe" | sudo tee /etc/apt/sources.list.d/sur5r-i3.list
$ sudo apt update
$ sudo apt install i3
sudo apt install ./keyring.deb
echo "deb http://debian.sur5r.net/i3/ $(grep '^DISTRIB_CODENAME=' /etc/lsb-release | cut -f2 -d=) universe" | sudo tee /etc/apt/sources.list.d/sur5r-i3.list
sudo apt update
sudo apt install -y i3

View file

@ -1,3 +1,3 @@
sudo add-apt-repository ppa:mozillateam/ppa
sudo apt update
sudo apt install thunderbird
sudo apt install -y thunderbird

View file

@ -11,17 +11,25 @@ function install {
fi
}
apt_packages=( "curl" "git" "htop" "tmux" "gimp" "inkscape" "texlive-full" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" "zathura")
apt_packages=( "curl" "git" "htop" "tmux" "gimp" "inkscape" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" "zathura")
sudo apt update
install "curl"
install "git"
install "htop"
install "tmux"
#install "gimp"
#install "inkscape"
#install "texlive-full"
install "stow"
install "vlc"
#install "blender"
install "gparted"
install "docker.io"
install "docker-compose"
install "python3-pip"
install "wget"
install "tree"
install "universal-ctags"
install "zathura"