Fix tray icon after upstream merge

This commit is contained in:
SpiritCroc 2024-10-22 20:10:23 +02:00
parent ba6fe489e3
commit 5bda6c96d6
2 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit a8a8ec0fbbdccffa17c273a825c4b60895c6cf1d
Subproject commit 94e8c782473cd794accb077d5c66a187f14d958a

View File

@ -62,9 +62,12 @@ repo_dir="$SCHILDI_ROOT/element-desktop"
base_out="$repo_dir/res/img"
export_square 256 "$mydir/ic_launcher_sc.svg" "$base_out/element.png"
magick "$base_out/element.png" "$base_out/element.ico"
# TODO monochrome icon? Unless https://github.com/element-hq/element-desktop/pull/1934 is what we'll end with
export_square 256 "$mydir/ic_launcher_sc.svg" "$base_out/monochrome.png"
magick "$base_out/element.png" "$base_out/monochrome.ico"
for f in "$base_out"/*.png; do
pngcrush -ow "$f"
done