mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
2995ae4d7a
pqiv is an image viewer that, unlike feh, has native support for Wayland, which makes working with it quite nice. It also supports showing a thumbnail mode that lets you preview and switch between images with ease, as well as the ability to run custom commands based on the current image. pqiv has more features than imv *and* anti-aliasing *actually works*, making it an ideal choice for image viewing on Wayland. After years of using feh, I am quite happy that I found pqiv.
15 lines
387 B
Nix
15 lines
387 B
Nix
{
|
|
xdg.mimeApps = {
|
|
enable = true;
|
|
|
|
defaultApplications = {
|
|
"image/png" = "pqiv.desktop";
|
|
"image/jpeg" = "pqiv.desktop";
|
|
"image/gif" = "org.qutebrowser.qutebrowser.desktop";
|
|
"application/x-wine-extension-osz" = "osu-stable.desktop";
|
|
"x-scheme-handler/http" = "librewolf.desktop";
|
|
"x-scheme-handler/https" = "librewolf.desktop";
|
|
};
|
|
};
|
|
}
|