mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
216f1a4836
* BIG CHANGES * core metadata * Added readme.md to the package * Moved the crate back to tui Co-authored-by: Liam <lj3954@users.noreply.github.com> --------- Co-authored-by: Liam <lj3954@users.noreply.github.com>
14 lines
343 B
Bash
14 lines
343 B
Bash
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
install_bottles() {
|
|
printf "%b\n" "${YELLOW}Installing Bottles...${RC}"
|
|
. ./setup-flatpak.sh
|
|
flatpak install -y flathub com.usebottles.bottles
|
|
printf "%b\n" "${GREEN}Bottles installed successfully. Restart the system to apply changes...${RC}"
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
install_bottles |