Change most flatpaks to native install
This commit is contained in:
parent
09f569929c
commit
ecefb8c324
2 changed files with 18 additions and 9 deletions
11
install.sh
11
install.sh
|
@ -29,6 +29,7 @@ install -pm644 -Dt /etc/pacman.d/conf.d \
|
||||||
# Remove packages one by one because pacman doesn't handle uninstalled packages
|
# Remove packages one by one because pacman doesn't handle uninstalled packages
|
||||||
# gracefully
|
# gracefully
|
||||||
packages_to_remove=(
|
packages_to_remove=(
|
||||||
|
eog # replaced by loupe
|
||||||
)
|
)
|
||||||
|
|
||||||
for pkg in "${packages_to_remove[@]}"; do
|
for pkg in "${packages_to_remove[@]}"; do
|
||||||
|
@ -191,10 +192,12 @@ packages=(
|
||||||
gvfs-smb
|
gvfs-smb
|
||||||
sushi # Previewer for nautilus
|
sushi # Previewer for nautilus
|
||||||
evince # Document viewer
|
evince # Document viewer
|
||||||
eog # Image viewer
|
loupe # image viewer
|
||||||
|
geary # light mail client
|
||||||
simple-scan
|
simple-scan
|
||||||
seahorse # Credential manager
|
seahorse # Credential manager
|
||||||
baobab # Disk space analyser
|
baobab # Disk space analyser
|
||||||
|
gnome-firmware # fwupd for gnome
|
||||||
# Multimedia for gnome
|
# Multimedia for gnome
|
||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
|
@ -466,6 +469,12 @@ aur_packages=(
|
||||||
qtscrcpy # Android screen display
|
qtscrcpy # Android screen display
|
||||||
cinny-desktop-bin # Lightweight Matrix client
|
cinny-desktop-bin # Lightweight Matrix client
|
||||||
iotas # Note taking with Nextcloud Sync
|
iotas # Note taking with Nextcloud Sync
|
||||||
|
denaro # personal finance manager
|
||||||
|
errands # todo list
|
||||||
|
impression # create bootable drives
|
||||||
|
pika-backup # backups with borgbackup
|
||||||
|
tuba # fediverse client (GoToSocial)
|
||||||
|
trayscale # tailscale cli GUI wrapper
|
||||||
)
|
)
|
||||||
|
|
||||||
aur_optdeps=(
|
aur_optdeps=(
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
set -e
|
set -e
|
||||||
exec 2> >(while read line; do echo -e "\e[01;31m$line\e[0m"; done)
|
exec 2> >(while read line; do echo -e "\e[01;31m$line\e[0m"; done)
|
||||||
|
|
||||||
flatpak install --noninteractive org.gnome.World.PikaBackup
|
flatpak install --noninteractive org.gnome.World.PikaBackup # to be removed
|
||||||
flatpak install --noninteractive org.gnome.Loupe
|
flatpak remove --noninteractive org.gnome.Loupe
|
||||||
flatpak install --noninteractive dev.deedles.Trayscale
|
flatpak remove --noninteractive dev.deedles.Trayscale
|
||||||
flatpak install --noninteractive com.belmoussaoui.ReadItLater
|
flatpak install --noninteractive com.belmoussaoui.ReadItLater
|
||||||
flatpak install --noninteractive dev.geopjr.Tuba
|
flatpak remove --noninteractive dev.geopjr.Tuba
|
||||||
flatpak install --noninteractive com.github.tchx84.Flatseal
|
flatpak install --noninteractive com.github.tchx84.Flatseal
|
||||||
flatpak install --noninteractive org.gnome.Firmware
|
flatpak remove --noninteractive org.gnome.Firmware
|
||||||
flatpak install --noninteractive io.github.mrvladus.List
|
flatpak remove --noninteractive io.github.mrvladus.List
|
||||||
flatpak install --noninteractive org.gnome.Geary
|
flatpak remove --noninteractive org.gnome.Geary
|
||||||
flatpak install --noninteractive io.gitlab.adhami3310.Impression
|
flatpak remove --noninteractive io.gitlab.adhami3310.Impression
|
||||||
|
|
Loading…
Reference in a new issue