Artix Linux Forum

Artix Linux => Applications & Software => Topic started by: Artist on 07 September 2021, 16:32:04

Title: Latest Firefox available in the Omniverse repository
Post by: Artist on 07 September 2021, 16:32:04
Firefox 92.0 is now available in the Omniverse (https://wiki.artixlinux.org/Main/Repositories#Omniverse) repository.
This repository also includes packages libreoffice-still, filezilla, audacious, vscodium, remmina, timeshift, displaylink, autokey, tmux, terminator and more.
Artist
Title: Re: Latest Firefox available in the Omniverse repository
Post by: niksonuser on 12 September 2021, 14:15:11
whats the difference between the universe AND THE omniverse
Title: Re: Latest Firefox available in the Omniverse repository
Post by: Artist on 12 September 2021, 20:57:53
The Artix repo's are explained here: https://wiki.artixlinux.org/Main/Repositories
Title: Re: Latest Firefox available in the Omniverse repository
Post by: VictorBrand on 12 September 2021, 22:41:33
whats the difference between the universe AND THE omniverse
Just run
Code: [Select]
pacman -Sl <repo-name>
and look what packages are available in each of the repos.
Title: Re: Latest Firefox available in the Omniverse repository
Post by: strajder on 13 September 2021, 21:38:03
Just run
Code: [Select]
pacman -Sl <repo-name>
and look what packages are available in each of the repos.
Or this (in Bash :P):
Code: [Select]
$ diff -y <(pacman -Sl world | cut -d' ' -f2-) <(pacman -Sl extra | cut -d' ' -f2-) | less
Replace "world" and "extra" with repo names.
Title: Re: Latest Firefox available in the Omniverse repository
Post by: capezotte on 14 September 2021, 05:18:15
Or this (in Bash :P):
Code: [Select]
$ diff -y <(pacman -Sl world | cut -d' ' -f2-) <(pacman -Sl extra | cut -d' ' -f2-) | less
Replace "world" and "extra" with repo names.
I know, processes and pipes are cheap, but you can remove the need for cut with pacman -Slq repo:

Code: [Select]
diff -y <(pacman -Slq world) <(pacman -Slq extra) | less
Title: Re: Latest Firefox available in the Omniverse repository
Post by: Artist on 05 October 2021, 15:52:17
Firefox has been updated to 93.0
One change is that Firefox will block downloads it considers as insecure as per
https://blog.mozilla.org/security/2021/10/05/firefox-93-protects-against-insecure-downloads/