Missing apps installed and 'gnome-software' and 'snapd' removed to bring custom installation in line with default
This commit is contained in:
@@ -118,4 +118,37 @@ elif [[ "${1}" == '--network' ]]; then
|
||||
|
||||
touch \
|
||||
/etc/NetworkManager/conf.d/10-globally-managed-devices.conf
|
||||
elif [[ "${1}" == '--apps' ]]; then
|
||||
app=(\
|
||||
io.elementary.calculator \
|
||||
io.elementary.camera \
|
||||
io.elementary.capnet-assist \
|
||||
io.elementary.maps \
|
||||
io.elementary.music \
|
||||
io.elementary.screenshot \
|
||||
io.elementary.videos \
|
||||
org.gnome.Epiphany \
|
||||
org.gnome.Evince \
|
||||
org.gnome.FileRoller \
|
||||
org.gnome.font-viewer\
|
||||
)
|
||||
|
||||
apps="app/${app[0]}"
|
||||
|
||||
for ((i=1;i<${#app[@]};i++)); do
|
||||
apps+=" app/${app[${i}]}"
|
||||
done
|
||||
|
||||
flatpak \
|
||||
install \
|
||||
appcenter \
|
||||
-y \
|
||||
${apps}
|
||||
elif [[ "${1}" == '--purge' ]]; then
|
||||
apt \
|
||||
purge \
|
||||
--yes \
|
||||
--autoremove \
|
||||
gnome-software \
|
||||
snapd
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user