11 lines
333 B
Bash
Executable file
11 lines
333 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";
|
|
|
|
# Install other flatpaks
|
|
flatpak install -y flathub com.github.xournalpp.xournalpp;
|
|
flatpak install -y flathub com.github.flxzt.rnote;
|
|
popd > /dev/null;
|