Fixing bug

This commit is contained in:
araison 2024-01-21 20:00:07 +01:00
parent e7f94e5464
commit c7d525cef9
2 changed files with 4 additions and 4 deletions

View File

@ -41,12 +41,12 @@ done
fi
echo "Installing side packages"
for file in others/**/*.sh
for file in $ls(programs/others/**/*.sh)
do
bash ${file}
done
echo "Installing dotfiles"
for file in dotfiles/**/*.sh
for file in $ls(program/dotfiles/**/*.sh)
do
bash ${file}
done

View File

@ -17,8 +17,8 @@ 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)
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