New comment by ethamck on void-packages repository https://github.com/void-linux/void-packages/pull/45438#issuecomment-1672333762 Comment: I'm currently waiting for a version bump in the main repository to do this. Previously, the icon that would be bundled with the desktop file was an unscalable raster of an odd size, so I opened [#207](https://github.com/Builditluc/wiki-tui/issues/207). The next version published will include proper icon sizes. I have some code locally that I assume will work perfectly once this happens, and if it does I'll force-push when tested. ```diff diff --git a/srcpkgs/wiki-tui/template b/srcpkgs/wiki-tui/template index 1a9630412a..24d4398b60 100644 --- a/srcpkgs/wiki-tui/template +++ b/srcpkgs/wiki-tui/template @@ -15,4 +15,7 @@ checksum=3fc11a53707531d658f47c04b1e148ff81332e20ada71f028c5c5cc69c2728aa post_install() { vlicense LICENSE + + vcopy icons/ usr/share/icons/ + vinstall wiki-tui.desktop 644 usr/share/applications } ```