I'm running a customized install of vanilla Arch, and I'm currently having issues with uploading files with the little "browse files" button. It's supposed to pop up a window allowing me to see files. (Not the normal full sized applications like Thunar or Nautilus) Are they plugins of some kind to the file browser or something else? Trying to search for them is a bit more of a headache than I anticipated.
4 Comments
BCsven@lemmy.ca · 9 pts · 109d
I have heard it called a file picker, but I don't know if that's an official term
just_another_person@lemmy.world · 6 pts · 109d
If you're talking about gnome, you might be referring to
xdg-desktop-portal, which should link out of your browser and defer to your DE to complete the requested action by showing a local file chooser.If the browser is asking to launch another default application, it would call
xdg-open, sending an email would bexdg-email, and so on. These are all part of the xdg-utils package, and a list of the tools are here.KDE has it's own utilsnfor the same purpose.
If yours isn't firing, you may not have the proper extension utils installed. I would start your browser from the CLI, go to whatever page is expected to launch the file chooser, then see if you catch an error in the output when it doesn't launch. That should tell you more.
CameronDev@programming.dev · 5 pts · 109d
https://docs.gtk.org/gtk3/iface.FileChooser.html
Most GUI tool kits will provide some kind of file picker/chooser thing.
More info: https://erika.florist/wiki/linux/filepickertragedy/
deadcream@sopuli.xyz · 3 pts · 109d
Apps use either one that's part of the GUI toolkit (gtk or qt) or provided by xdg-desktop-portal (both Firefox and Chrome use portal one by default these days IIRC).