mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-22 01:50:56 -07:00
Kaj Forney
41190a86c5
Former-commit-id: f37d919028ae2e9d0f2dcf6cf33e5fd6bafc7022 Former-commit-id: 6bc180ed555f3a59d893dedcf51e9ce28c29ec81
16 lines
No EOL
526 B
Bash
Executable file
16 lines
No EOL
526 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#Discord
|
|
wget -O ../build/discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
|
|
|
|
#Resilio Sync
|
|
wget -O ../build/resilio.deb "https://download-cdn.resilio.com/2.6.3/Debian/resilio-sync_2.6.3-1_amd64.deb"
|
|
|
|
#VS Code (OSS)
|
|
wget -O ../build/code.deb "https://github.com/VSCodium/vscodium/releases/download/1.37.1/codium_1.37.1-1565952268_amd64.deb"
|
|
|
|
#Slack
|
|
wget -O ../build/slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb"
|
|
|
|
dpkg-name ../build/*.deb
|
|
exit 0 |