add(apps): added loupe

This commit is contained in:
kenji
2026-01-01 10:58:54 -06:00
parent 906ce21aaa
commit e73d9477f7
3 changed files with 21 additions and 0 deletions
+4
View File
@@ -51,6 +51,10 @@
"fullscreen, class:^(heroic)$"
"fullscreen, class:^wine-.*$"
"fullscreen, title:^Wine .*$"
# --- IMAGE VIEWER (Loupe) ---
"float, class:^(org\.gnome\.Loupe)$"
"center, class:^(org\.gnome\.Loupe)$"
];
};
}
+16
View File
@@ -0,0 +1,16 @@
{pkgs, ...}: {
home.packages = with pkgs; [loupe];
xdg.mimeApps = {
enable = true;
defaultApplications = {
"image/png" = "org.gnome.Loupe.desktop";
"image/jpeg" = "org.gnome.Loupe.desktop";
"image/gif" = "org.gnome.Loupe.desktop";
"image/webp" = "org.gnome.Loupe.desktop";
"image/bmp" = "org.gnome.Loupe.desktop";
"image/svg+xml" = "org.gnome.Loupe.desktop";
"image/tiff" = "org.gnome.Loupe.desktop";
};
};
}
+1
View File
@@ -3,6 +3,7 @@
../../apps/yazi
../../apps/gemini
../../apps/firefox
../../apps/loupe
# ../../apps/starship
];
}