vibetyper: 1.5.1 -> 1.5.2

- Refresh AppImage hash (last-modified: Wed, 16 Sep 2026)
- Replace dead VIBE_DISABLE_HYPRLAND_INDICATOR_NO_BLUR env var with
  VIBE_DISABLE_WLROOTS_INDICATOR_RULES (renamed upstream in 1.5.x)
- 1.5.x fixes: multi-monitor Wayland indicator placement (1.3.4),
  stuck Magic Formatter previews (1.3.5)
This commit is contained in:
2026-09-17 06:51:03 +02:00
parent c9653a10a2
commit e29d274918
+4 -4
View File
@@ -1,4 +1,4 @@
# last-modified: Fri, 24 Jul 2026 10:50:57 GMT
# last-modified: Wed, 16 Sep 2026 09:48:47 GMT
{
appimageTools,
fetchurl,
@@ -6,12 +6,12 @@
makeWrapper,
}: let
pname = "vibetyper";
version = "1.5.1";
version = "1.5.2";
# Upstream publishes to an unversioned URL — ./update.sh watches Last-Modified
# and refreshes the sha256 when the binary changes. Bump `version` manually.
src = fetchurl {
url = "https://cdn.vibetyper.com/releases/linux/VibeTyper.AppImage";
sha256 = "sha256-QEVFCUkcA/qK+1en3oLDGZlNvALLL6ojT+opL9K/PVU=";
sha256 = "sha256-rlbpvUcn84fil7aQci/XANcl/x/u6qIM2dmhypwI7mU=";
};
appimageContents = appimageTools.extract {inherit pname version src;};
in
@@ -29,7 +29,7 @@ in
install -m 444 -D ${appimageContents}/vibe-typer.png \
$out/share/icons/hicolor/512x512/apps/vibe-typer.png
wrapProgram $out/bin/${pname} \
--set VIBE_DISABLE_HYPRLAND_INDICATOR_NO_BLUR 1
--set VIBE_DISABLE_WLROOTS_INDICATOR_RULES 1
'';
passthru.updateScript = ./update.sh;