jakemarsh / atom-spotify

Atom package for displaying the currently playing song in Spotify in Atom's status bar
MIT License
56 stars 19 forks source link

Limit characters shown #21

Open visualcookie opened 9 years ago

visualcookie commented 9 years ago

Hi,

please add possibility to limit characters shown in status bar. Some tracks may have long Tracknames, Remixnames or Artistnames.

Dean

jazzpi commented 9 years ago

You could try adding the following to your stylesheet:

div.spotify-container {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}