From 3d804ebe754d5c71c31d5c29ffd29e2f5d06d423 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 21 Apr 2021 13:55:26 +0200 Subject: [PATCH] Added discord installation --- common/apps/discord.sh | 7 +++++++ users/edraft/scripts/mint_desktop_installation.sh | 2 ++ users/edraft/scripts/ubuntu_desktop_installation.sh | 2 ++ 3 files changed, 11 insertions(+) create mode 100644 common/apps/discord.sh diff --git a/common/apps/discord.sh b/common/apps/discord.sh new file mode 100644 index 0000000..8c99e02 --- /dev/null +++ b/common/apps/discord.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +install_discord() { + echo 'Installing Discord' + wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb" + sudo dpkg -i discord.deb +} \ No newline at end of file diff --git a/users/edraft/scripts/mint_desktop_installation.sh b/users/edraft/scripts/mint_desktop_installation.sh index c905575..2319887 100644 --- a/users/edraft/scripts/mint_desktop_installation.sh +++ b/users/edraft/scripts/mint_desktop_installation.sh @@ -6,6 +6,7 @@ source $PWD/common/scripts/first_install.sh source $PWD/common/apps/barrier.sh source $PWD/common/apps/boxes.sh source $PWD/common/apps/chrome.sh +source $PWD/common/apps/discord.sh source $PWD/common/apps/etcher.sh source $PWD/common/apps/flameshot.sh source $PWD/common/apps/geary.sh @@ -33,6 +34,7 @@ default_install install_barrier install_boxes install_chrome +install_discord install_etcher install_flameshot install_geary diff --git a/users/edraft/scripts/ubuntu_desktop_installation.sh b/users/edraft/scripts/ubuntu_desktop_installation.sh index 6681137..44695d1 100644 --- a/users/edraft/scripts/ubuntu_desktop_installation.sh +++ b/users/edraft/scripts/ubuntu_desktop_installation.sh @@ -9,6 +9,7 @@ source $PWD/common/apps/snap/simplenote.sh source $PWD/common/apps/barrier.sh source $PWD/common/apps/boxes.sh source $PWD/common/apps/chrome.sh +source $PWD/common/apps/discord.sh source $PWD/common/apps/etcher.sh source $PWD/common/apps/flameshot.sh source $PWD/common/apps/geary.sh @@ -38,6 +39,7 @@ install_simplenote install_barrier install_boxes install_chrome +install_discord install_etcher install_flameshot install_geary