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 +1,2 @@
chsh -s $(which zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

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"

View File

@ -17,17 +17,31 @@ function install {
}
cask_packages=("gimp" "thunderbird" "firefox" "zotero" "rectangle" "vlc" "iterm2" "inkscape" "obsidian" "blender" "mactex" "bitwarden" "visual-studio-code" "spotify")
other_packages=("neovim" "tmux" "docker" "docker-compose" "git" "curl" "zsh" "stow" "tree" "node" "universal-ctags")
brew update
for package in "${cask_packages}"
do
install ${package} "cask"
done
install "gimp" "cask"
install "thunderbird" "cask"
install "firefox" "cask"
install "zotero" "cask"
install "rectangle" "cask"
install "vlc" "cask"
install "iterm2" "cask"
install "inkscape" "cask"
install "obsidian" "cask"
install "blender" "cask"
install "mactex" "cask"
install "bitwarden" "cask"
install "visual-studio-code" "cask"
install "spotify" "cask"
for package in "${other_packages}"
do
install ${package}
done
install "neovim"
install "tmux"
install "docker"
install "docker-compose"
install "git"
install "curl"
install "zsh"
install "stow"
install "tree"
install "node"
install "universal-ctags"