mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
381155dad7
* added bottles install script * Update tabs/applications-setup/bottles-setup.sh Co-authored-by: Liam <33645555+lj3954@users.noreply.github.com> * Update tab_data.toml * Update tab_data.toml --------- Co-authored-by: Liam <33645555+lj3954@users.noreply.github.com>
14 lines
344 B
Bash
14 lines
344 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_bottles2 |