2023-04-01 15:08:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
|
|
|
source "../../Debian/Software/rclone/install.sh";
|
|
|
|
|
|
|
|
# Install Brave
|
|
|
|
source "../../Debian/Software/Brave/install-stable.sh";
|
2024-03-23 16:18:16 +00:00
|
|
|
# source "../../Debian/Software/Brave/install-beta.sh";
|
2023-10-15 10:25:07 +00:00
|
|
|
# source "../../Debian/Software/Brave/install-nightly.sh";
|
2023-04-02 01:44:32 +00:00
|
|
|
|
2023-04-04 01:04:42 +00:00
|
|
|
BROWSER_BIN="brave-browser" \
|
2023-04-02 01:44:32 +00:00
|
|
|
EXTENSION_DIR=/usr/share/brave-extensions \
|
|
|
|
EXTENSION_POLICY_DIR=/opt/brave.com/brave/extensions \
|
|
|
|
source "../../Common/Config/Chromium/install-ytmusic-dl.sh";
|
|
|
|
|
2023-04-01 15:08:17 +00:00
|
|
|
source "../../Debian/Software/Google Chrome/install.sh";
|
|
|
|
|
|
|
|
# Install further software
|
2023-04-02 02:00:32 +00:00
|
|
|
source "../../Common/Software/Oh My Posh/install.sh";
|
2023-04-01 15:08:17 +00:00
|
|
|
source "../../Debian/Software/git/install.sh";
|
|
|
|
source "../../Debian/Software/logo-ls/install.sh";
|
|
|
|
source "../../Debian/Software/VSCodium/install.sh";
|
|
|
|
source "../../Debian/Software/Visual Studio Code/install.sh";
|
2024-03-20 21:40:37 +00:00
|
|
|
source "../../Common/Software/n/install.sh";
|
2023-04-01 15:08:17 +00:00
|
|
|
source "../../Debian/Software/Python/install.sh";
|
2023-04-02 02:13:21 +00:00
|
|
|
source "../../Common/Software/pyenv/install.sh";
|
2024-03-20 22:04:25 +00:00
|
|
|
source "../../Debian/Software/Pipenv/install.sh";
|
2023-04-01 15:08:17 +00:00
|
|
|
source "../../Common/Software/tea/install.sh";
|
|
|
|
source "../../Common/Software/Godot/install.sh";
|
|
|
|
source "../../Debian/Software/Virtual Machine Manager/install.sh";
|
|
|
|
source "../../Common/Software/Woodpecker CLI/install.sh";
|
|
|
|
|
2023-04-05 08:58:51 +00:00
|
|
|
source "../../Common/Config/git/install.sh";
|
|
|
|
|
2023-04-01 15:08:17 +00:00
|
|
|
# Install General Packages from APT
|
|
|
|
source "../../Debian/Software/common-apt/install.sh";
|
|
|
|
|
|
|
|
# Install other flatpaks
|
|
|
|
flatpak install -y flathub com.bitwarden.desktop;
|
|
|
|
flatpak install -y flathub org.signal.Signal;
|
|
|
|
flatpak install -y flathub com.usebottles.bottles;
|
|
|
|
flatpak install -y flathub com.mattjakeman.ExtensionManager;
|
|
|
|
flatpak install -y flathub com.github.wwmm.easyeffects;
|
|
|
|
flatpak install -y flathub ch.threema.threema-web-desktop;
|
|
|
|
flatpak install -y flathub app.ytmdesktop.ytmdesktop;
|
|
|
|
flatpak install -y flathub com.github.tchx84.Flatseal;
|
|
|
|
popd > /dev/null;
|