Better app logo

This commit is contained in:
Jeena 2025-06-04 16:51:15 +09:00
parent 6807717714
commit c3749a476e
5 changed files with 19 additions and 6 deletions

View file

@ -41,6 +41,6 @@ package() {
install -Dm644 src/resources/net.jeena.Recoder.desktop \
"$pkgdir/usr/share/applications/net.jeena.Recoder.desktop"
install -Dm644 src/resources/net.jeena.Recoder.png \
"$pkgdir/usr/share/icons/hicolor/256x256/apps/net.jeena.Recoder.png"
install -Dm644 src/resources/net.jeena.Recoder.svg \
"$pkgdir/usr/share/icons/hicolor/scalable/apps/net.jeena.Recoder.svg"
}

View file

@ -5,10 +5,10 @@ from gi.repository import Gtk
from recoder.models import FileStatus
ICONS = {
FileStatus.WAITING: "media-playback-pause-symbolic",
FileStatus.PROCESSING: "view-refresh-symbolic",
FileStatus.DONE: "task-complete-symbolic",
FileStatus.ERROR: "dialog-error-symbolic",
FileStatus.WAITING: "network-idle-symbolic",
FileStatus.PROCESSING: "network-transmit-symbolic",
FileStatus.DONE: "check-plain-symbolic",
FileStatus.ERROR: "network-error-symbolic",
}
LABELS = {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

View file

@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128">
<!-- Larger dark circle, fills more of the viewBox -->
<circle cx="64" cy="64" r="61" fill="#eee"/> <!-- Outer ring -->
<circle cx="64" cy="64" r="60" fill="#333"/> <!-- Main background -->
<!-- Enlarged purple video frame -->
<rect x="32" y="32" width="64" height="64" rx="6" fill="#7f3fbf"/>
<!-- Pixel hint, repositioned for better balance -->
<rect x="72" y="36" width="8" height="8" fill="#eee"/>
<rect x="84" y="36" width="8" height="8" fill="#eee"/>
<rect x="72" y="48" width="8" height="8" fill="#eee"/>
</svg>

After

Width:  |  Height:  |  Size: 627 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB