Add simplify3d to arch-box

This commit is contained in:
Tyler Starr 2023-10-09 22:06:15 -07:00
parent 6cc6b082b7
commit adfd99b897
3 changed files with 15 additions and 8 deletions

View File

@ -0,0 +1,15 @@
#!/bin/bash
# https://github.com/starr-dusT/dotfiles
# Install cadquery
sudo pacman -S python python-pip
pip install cadquery --break-system-packages
curl -LO https://github.com/CadQuery/CQ-editor/releases/download/nightly/CQ-editor-master-Linux-x86_64.sh
sh CQ-editor-master-Linux-x86_64.sh
rm CQ-editor-master-Linux-x86_64.sh
# Install dependencies for Simplify3d
sudo pacman -S fontconfig
sudo pacman -S $(pacman -Ssq xcb)
sudo pacman -S $(pacman -Ssq xorg)
echo "The joys of using proprietary software... you need to install Simplify3d with the script from their website (https://cloud.simplify3d.com/account/downloads)"

View File

@ -1,8 +0,0 @@
#!/bin/bash
# https://github.com/starr-dusT/dotfiles
sudo pacman -S python python-pip
pip install cadquery --break-system-packages
curl -LO https://github.com/CadQuery/CQ-editor/releases/download/nightly/CQ-editor-master-Linux-x86_64.sh
sh CQ-editor-master-Linux-x86_64.sh
rm CQ-editor-master-Linux-x86_64.sh