powerful but friendly backup program that runs in your tray, powered by restic devins.page/restray
go restic system-tray
2

Configure Feed

Select the types of activity you want to include in your feed.

fix: truncation

intergrav (Jul 2, 2026, 4:38 AM EDT) f2fb3e14 efcf77da

+2 -7
+2 -7
cmd/restray/tray.go
··· 338 338 for i := 0; i < len(cfg.Profiles) && i < maxProfiles; i++ { 339 339 key := cfg.Profiles[i].displayName() 340 340 if !isProfileBusy(key) { 341 - failMsg := getProfileFailStatus(key) 342 - if failMsg != "" { 343 - failMsg = profilePrefix(cfg, cfg.Profiles[i]) + failMsg 344 - if len(failMsg) > maxMenuWidth { 345 - failMsg = failMsg[:maxMenuWidth-1] + "…" 346 - } 347 - mStatusItems[i].SetTitle(failMsg) 341 + if failMsg := getProfileFailStatus(key); failMsg != "" { 342 + statusItem(i).SetTitle(failMsg) 348 343 } else { 349 344 mStatusItems[i].SetTitle(profileStatusText(cfg, i)) 350 345 }