Fixing bug

This commit is contained in:
araison 2024-01-21 21:18:40 +01:00
parent 36fa70d519
commit 8b363d59ca
4 changed files with 5 additions and 6 deletions

View File

@ -3,5 +3,5 @@ git clone git@gitlab.xlim.fr:araison/dotfiles.git $HOME/dotfiles
for conf in $(ls $HOME/dotfiles/)
do
stow ${conf}
stow $HOME/dotfiles/${conf}
done

View File

@ -4,4 +4,3 @@ chmod u+x nvim.appimage
./squashfs-root/AppRun --version
sudo mv squashfs-root /
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
nvim

View File

@ -1,3 +1,3 @@
wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/install.sh | sudo bash
sudo apt update
sudo apt install zotero
sudo apt install -y zotero

View File

@ -13,12 +13,12 @@ function install {
apt_packages=( "curl" "exfat-utils" "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" "exfat-utils" "git" "htop" "tmux" "gimp" "inkscape" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" "zathura")
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
for package in "${apt_packages}$"
for package in "${apt_packages}"
do
install ${package}
done