mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-25 09:45:25 -07:00
Kaj Forney
9ffb070193
Former-commit-id: 5ce20813798818dae9808e3fb7c94bd35d5be97e Former-commit-id: c1b3dea0bda6a51f653280dcbcebf00559f892bf
15 lines
No EOL
465 B
Bash
Executable file
15 lines
No EOL
465 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#Discord
|
|
wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
|
|
|
|
#Resilio Sync
|
|
wget -O resilio.deb "https://download-cdn.resilio.com/2.6.3/Debian/resilio-sync_2.6.3-1_amd64.deb"
|
|
|
|
#VS Code (OSS)
|
|
wget -O code.deb "https://github.com/VSCodium/vscodium/releases/download/1.37.1/codium_1.37.1-1565952268_amd64.deb"
|
|
|
|
#Slack
|
|
wget -O slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb"
|
|
|
|
exit 0 |