Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

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

Increase placeholder icon opacity

Use white opacity 0.8 for empty and failure states in ArtistCardView

+2 -2
macos/Rockbox.xcodeproj/project.xcworkspace/xcuserdata/tsirysandratraina.xcuserdatad/UserInterfaceState.xcuserstate

This is a binary file and will not be displayed.

+2 -2
macos/Rockbox/Views/Artists/ArtistCardView.swift
··· 25 25 case .empty: 26 26 Image(systemName: "music.mic") 27 27 .font(.system(size: 40)) 28 - .foregroundStyle(.white.opacity(0.6)) 28 + .foregroundStyle(.white.opacity(0.8)) 29 29 case .success(let image): 30 30 image 31 31 .resizable() ··· 33 33 case .failure: 34 34 Image(systemName: "music.mic") 35 35 .font(.system(size: 40)) 36 - .foregroundStyle(.white.opacity(0.6)) 36 + .foregroundStyle(.white.opacity(0.8)) 37 37 @unknown default: 38 38 EmptyView() 39 39 }