15 lines
437 B
Bash
Executable file
15 lines
437 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
source "./personal.sh";
|
|
|
|
source "../../Debian/Software/Java/install.sh";
|
|
source "../../Debian/Software/cloudflared/install.sh";
|
|
source "../../Common/Software/JetBrains/install-toolbox.sh";
|
|
|
|
. "../../Common/Config/udev/ct-board.sh";
|
|
|
|
# Install other flatpaks
|
|
flatpak install -y flathub com.github.xournalpp.xournalpp;
|
|
flatpak install -y flathub com.github.flxzt.rnote;
|
|
popd > /dev/null;
|