Skip to content
Snippets Groups Projects
Commit 49fdb73b authored by Andri Joos's avatar Andri Joos :blush:
Browse files

install flatseal

parent 5722b299
No related merge requests found
......@@ -45,8 +45,9 @@ $element_desktop_key "$element_desktop_label" $element_desktop_enabled \
$dconf_editor_key "$dconf_editor_label" $dconf_editor_enabled \
$openssh_server_key "$openssh_server_label" $openssh_server_enabled \
$openconnect_key "$openconnect_label" $openconnect_enabled \
$swap_key "$swap_label" $swap_enabled \
$protonvpn_key "$protonvpn_label" $protonvpn_enabled \
$flatseal_key "$flatseal_label" $flatseal_enabled \
$swap_key "$swap_label" $swap_enabled \
3>&1 1>&2 2>&3)
IFS=' ' read -a selected_options <<< $selected_tags
......@@ -175,6 +176,9 @@ do
elif [ $option = $protonvpn_key ]
then
install_protonvpn
elif [ $option = $flatseal_key ]
then
install_flatseal
elif [ $option = $swap_key ]
then
setup_swap
......
......@@ -345,3 +345,9 @@ install_protonvpn() {
make_autostart_entry proton-vpn "proton vpn" "protonvpn-app"
}
install_flatseal() {
flatpak_id="com.github.tchx84.Flatseal"
install_flatpak_app $flatpak_id
}
......@@ -43,6 +43,7 @@ dconf_editor_enabled=$checkbox_unchecked
openssh_server_enabled=$checkbox_unchecked
openconnect_enabled=$checkbox_unchecked
protonvpn_enabled=$checkbox_unchecked
flatseal_enabled=$checkbox_unchecked
swap_enabled=$checkbox_unchecked
# labels
......@@ -86,6 +87,7 @@ dconf_editor_key="dconf_editor"
openssh_server_key="openssh_server"
openconnect_key="openconnect"
protonvpn_key="proton_vpn"
flatseal_key="flatseal"
swap_key="swap"
# show text
......@@ -129,4 +131,5 @@ dconf_editor_label="dconf-editor"
openssh_server_label="openssh-server"
openconnect_label="openconnect"
protonvpn_label="proton-vpn"
flatseal_label="flatseal"
swap_label="swap"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment