Nouveau script
+backup_Joplin.sh
This commit is contained in:
24
install_adobe_apps.sh
Executable file
24
install_adobe_apps.sh
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
venv_path=$HOME/Documents/venv/
|
||||
folder=adobeCC
|
||||
|
||||
# Virtual environnment
|
||||
cd $venv_path
|
||||
python3 -m venv $folder
|
||||
$folder/bin/pip3 install -U pip setuptools
|
||||
$folder/bin/pip3 install -U requests tqdm
|
||||
|
||||
cd $venv_path$folder
|
||||
|
||||
# dl gist
|
||||
wget https://gist.github.com/ayyybe/a5f01c6f40020f9a7bc4939beeb2df1d/raw/6e82a23d381059a345cdf77fc29595ef11985d31/ccdl.py
|
||||
|
||||
# Launch script
|
||||
echo "#!/usr/bin/env bash" > $folder.command
|
||||
echo "$venv_path$folder/bin/python3 $venv_path$folder/ccdl.py" > $folder.command
|
||||
|
||||
chmod +x $folder.command
|
||||
|
||||
# Link in /Applications
|
||||
ln -s "$venv_path$folder/$folder.command" "/Applications/Adobe CC_Offline_Package_Generator_2"
|
||||
Reference in New Issue
Block a user