Add Glance application to Hyprland binds and XDG desktop entries

This commit is contained in:
2025-09-30 13:07:18 +02:00
parent 7ae2f26c8a
commit a8ebaf2dd6
2 changed files with 13 additions and 0 deletions

View File

@@ -20,6 +20,10 @@ let
url = "https://registry.npmmirror.com/@lobehub/icons-static-png/1.65.0/files/dark/claude-color.png";
sha256 = "sha256-wmYmbmT2/bR4JrnZJu2stjRZm//O5TB9EPE2NQWdGkQ=";
};
glanceIcon = pkgs.fetchurl {
url = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/glance.png";
sha256 = "sha256-xyFlmPpt+DABoGX5oBqj/aQVdxtmNflat9Jb2BE7SOY=";
};
in
{
xdg = {
@@ -72,6 +76,14 @@ in
terminal = false;
type = "Application";
};
"glance" = {
name = "Glance";
genericName = "Glance";
exec = "chromium --profile-directory=Default --app=https://glance.garandplg.com/";
icon = "${glanceIcon}";
terminal = false;
type = "Application";
};
};
};
}