Evita que la aplicación muestre el icono de credencial en el Dock

8

Es probable que cualquier usuario de escritorio de Spotify haya notado sus notificaciones generalizadas: cuando "uno de nuestros amigos" se une a Spotify, hay una notificación dentro de la aplicación y una insignia roja que aparece en el icono de Spotify en el Dock.

¿HayalgunamaneradedeshabilitarlacapacidaddeunaaplicaciónparamostrarunainsigniaensuiconodeDock?

EstoyusandoLion(10.7.8)y,porlotanto,notengoelprefpano"Notificaciones" que se introdujo en Mountain Lion.

Intenté buscar en los recursos de la aplicación y en el archivo .plist para ver si había una configuración para habilitar / deshabilitar esto ... sin éxito.

    
pregunta derrylwc 09.01.2013 - 20:12

2 respuestas

4

No: la ruta normal es usar el prefanato de Notificaciones para desactivar las notificaciones, pero esto no ayudaría, ya que Spotify no está en la lista.

También estoy muy molesto por el constante flujo de notificaciones de Spotify. Me pregunto si habría una manera de eliminar todo el tráfico de redes sociales que entra en Spotify y de alguna manera cortar estas notificaciones en el brote.

    
respondido por el raine 08.05.2013 - 13:02
4

Responda aquí resuelve su problema:

# "Usernoted" seems to be the "user notifications daemon", so get it's PID.
pid=$(ps aux | grep -i [u]sernoted | awk '{print $2}')

# Find the sqlite3 database that this program has open. It's in a "private" folder (app sandboxing).
db="$(lsof -p $pid | grep com.apple.notificationcenter/db/db\$ | awk '{print $9}')"

# I got the bundleid from Spotify.app/Contents/Info.plist
bundleid="com.spotify.client"

# I use 0 as the flags because you can change all the settings in System Preferences
# 5 seems to be the default for show_count
# Grab the next-highest sort order
sql="INSERT INTO app_info (bundleid, flags, show_count, sort_order) VALUES ( '$bundleid', 0, 5, (SELECT MAX(sort_order) + 1 FROM app_info) );"

# Run the command
sqlite3 "$db" "$sql"

# Restart usernoted to make the changes take effect
killall user noted

Luego puedes ver Spotify en Preferencias del sistema - > Notificaciones, y puede deshabilitar sus notificaciones.

    
respondido por el fossilet 04.08.2015 - 16:58

Lea otras preguntas en las etiquetas