<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Commands to play songs and playlists from terminal in Desktop (Linux)</title>
    <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802361#M5729</link>
    <description>&lt;P&gt;&lt;STRIKE&gt;I don't believe there is a way to operate Spotify from the terminal... I think there is some sort of command that can be sent to it (Toastify must use it), but I'm unsure as to what it is.&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, thinking about it, I'm&amp;nbsp;&lt;EM&gt;sure&amp;nbsp;&lt;/EM&gt;I remember seeing a post about this somewhere. I'll see if I can dig it out (or work out the commands myself).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Liam&lt;/P&gt;</description>
    <pubDate>Sun, 25 May 2014 17:28:12 GMT</pubDate>
    <dc:creator>Liam</dc:creator>
    <dc:date>2014-05-25T17:28:12Z</dc:date>
    <item>
      <title>Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802287#M5728</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;so I want to wake up listening to some music and I've found an app that lets me execute a command at a given time. I want that app to start spotify and automatically play a song or a playlist but I can't figure out a command to do that from the terminal (so that I can paste it on my app).&lt;/P&gt;
&lt;P&gt;I've tried spotify --playpause but it doesn't play anything. Typing spotify "playlist URI" seems to open spotify on the given playlist but I don't know how to make it start. Do you know any way to operate Spotify via terminal? What are the commands and syntax?&lt;/P&gt;
&lt;P&gt;Any help is very appreciated.&lt;/P&gt;</description>
      <pubDate>Sun, 25 May 2014 15:26:12 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802287#M5728</guid>
      <dc:creator>Fraxav</dc:creator>
      <dc:date>2014-05-25T15:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802361#M5729</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;I don't believe there is a way to operate Spotify from the terminal... I think there is some sort of command that can be sent to it (Toastify must use it), but I'm unsure as to what it is.&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, thinking about it, I'm&amp;nbsp;&lt;EM&gt;sure&amp;nbsp;&lt;/EM&gt;I remember seeing a post about this somewhere. I'll see if I can dig it out (or work out the commands myself).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Liam&lt;/P&gt;</description>
      <pubDate>Sun, 25 May 2014 17:28:12 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802361#M5729</guid>
      <dc:creator>Liam</dc:creator>
      <dc:date>2014-05-25T17:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802705#M5730</link>
      <description>&lt;P&gt;This is indeed possible on Linux. You can start playing any URI by running this command, with Spotify already running:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;qdbus org.mpris.MediaPlayer2.spotify / org.freedesktop.MediaPlayer2.OpenUri URI&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Replace that last URI with the actual URI. &lt;STRONG&gt;It should be on one line&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example script to start Spotify and start playing an album:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;#!/bin/bash

spotify 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1 &amp;amp;

sleep 3

qdbus org.mpris.MediaPlayer2.spotify / org.freedesktop.MediaPlayer2.OpenUri spotify:album:4m2880jivSbbyEGAKfITCa&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 07:13:33 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802705#M5730</guid>
      <dc:creator>olejon</dc:creator>
      <dc:date>2014-05-26T07:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802951#M5731</link>
      <description>&lt;P&gt;Thank you olejon, both your command and the script worked great. I wonder if the result of the script (open spotify and play URI) could be obtained with a single command from terminal, i.e:&lt;/P&gt;
&lt;PRE&gt;spotify &amp;amp;&amp;amp; qdbus org.mpris.MediaPlayer2.spotify / org.freedesktop.MediaPlayer2.OpenUri URI&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;I tried all the connectors I could find but none of them worked. I'm not good with commands...&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 11:41:52 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802951#M5731</guid>
      <dc:creator>Fraxav</dc:creator>
      <dc:date>2014-05-26T11:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802971#M5732</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.spotify.com/t5/user/viewprofilepage/user-id/535718"&gt;@Fraxav&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Thank you olejon, both your command and the script worked great. I wonder if the result of the script (open spotify and play URI) could be obtained with a single command from terminal&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So you have two options. Either create and save the script I mentioned, and then run that script, or use a single command that combines all of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your example won't work, because the two last commands won't run before you quit Spotify. Adding &amp;amp; puts Spotify in the background, while 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1 ignores any output. We must use paranthesis to daemonize (put in background) when combining multiple commands. &amp;amp;&amp;amp; is used to run a command after the previous succeeds. So &amp;amp; and &amp;amp;&amp;amp; are two completely different things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(spotify 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1 &amp;amp;) &amp;amp;&amp;amp; sleep 3 &amp;amp;&amp;amp; qdbus org.mpris.MediaPlayer2.spotify / org.freedesktop.MediaPlayer2.OpenUri spotify:album:4m2880jivSbbyEGAKfITCa&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;Remember, all on one line.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Depending on how long time Spotify uses to cold start (reboot to check), you can increase or decrease the sleep time (in seconds).&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;The shell is very powerful. You can run a second command if the first one fails also, like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;command1 || command2&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Or run the second regardless:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;command1; command2&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 12:08:18 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802971#M5732</guid>
      <dc:creator>olejon</dc:creator>
      <dc:date>2014-05-26T12:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802983#M5733</link>
      <description>&lt;P&gt;And it works indeed. I had to increase the sleep time a little to play my playlist, but for some reason 3 was enough when playing your album. Anyway, that's exactly what I needed. Thanks so much for your help!&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 12:17:53 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802983#M5733</guid>
      <dc:creator>Fraxav</dc:creator>
      <dc:date>2014-05-26T12:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802989#M5734</link>
      <description>&lt;P&gt;You're welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is for playing music when you wake up, setting the sleep to a high value, like 10, can be a good idea, to make sure Spotify is up and running and ready to receive commands. One could of course create a script that loops to check if D-Bus is ready, and then play the URI, but that is not necessary in this case, just complicated.&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 12:23:18 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/802989#M5734</guid>
      <dc:creator>olejon</dc:creator>
      <dc:date>2014-05-26T12:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/803025#M5735</link>
      <description>&lt;P&gt;Yes 10 seems to work fine right now. I'm going to test the whole thing on startup just to make sure.&lt;/P&gt;
&lt;P&gt;On a side note, it seems that the playlist I'm playing always starts (of course) with the first song. I was wondering if I could add one of the spotify commands ('next') to make it skip to the next song (which would be a random one since I have shuffling enabled), and I found this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;org.mpris.MediaPlayer2.Player.Next() -&amp;gt; ()&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to add that at the end of your magic formula but it didn't work (didn't even start playing). Do you mind a last tip about this one?&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 13:18:45 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/803025#M5735</guid>
      <dc:creator>Fraxav</dc:creator>
      <dc:date>2014-05-26T13:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/803085#M5736</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;I tried to add that at the end of your magic formula but it didn't work (didn't even start playing). Do you mind a last tip about this one?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This should do it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(spotify 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1 &amp;amp;) &amp;amp;&amp;amp; sleep 3 &amp;amp;&amp;amp; qdbus org.mpris.MediaPlayer2.spotify / org.freedesktop.MediaPlayer2.OpenUri spotify:album:4m2880jivSbbyEGAKfITCa &amp;amp;&amp;amp; qdbus org.mpris.MediaPlayer2.spotify / org.freedesktop.MediaPlayer2.Next&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;You may have to put a sleep between the OpenUri and Next. You'll see. For me the above works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Replace the album URI with your playlist URI.&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 15:12:02 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/803085#M5736</guid>
      <dc:creator>olejon</dc:creator>
      <dc:date>2014-05-26T15:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/803313#M5737</link>
      <description>&lt;P&gt;It works for me too, without the sleep. I was trying to do it without all the necessary code, of course...&lt;/P&gt;
&lt;P&gt;Thank you again!&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 20:45:29 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/803313#M5737</guid>
      <dc:creator>Fraxav</dc:creator>
      <dc:date>2014-05-26T20:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/987812#M5738</link>
      <description>Try on mac osascript -e 'tell application "spotify" to play'</description>
      <pubDate>Thu, 27 Nov 2014 07:20:50 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/987812#M5738</guid>
      <dc:creator>RadioactiveRadz</dc:creator>
      <dc:date>2014-11-27T07:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1031951#M5739</link>
      <description>&lt;P&gt;@RadioactiveRadz, Do you know if this can take parameters for a playlist or song name?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2015 21:26:02 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1031951#M5739</guid>
      <dc:creator>chadlavi</dc:creator>
      <dc:date>2015-02-20T21:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1031970#M5740</link>
      <description>&lt;P&gt;Deleted&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2015 22:42:14 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1031970#M5740</guid>
      <dc:creator>olejon</dc:creator>
      <dc:date>2015-02-20T22:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1032182#M5741</link>
      <description>Mac&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 21 Feb 2015 13:00:05 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1032182#M5741</guid>
      <dc:creator>RadioactiveRadz</dc:creator>
      <dc:date>2015-02-21T13:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1032367#M5742</link>
      <description>Yes it can&lt;BR /&gt;goto this website this is very helpful for me&lt;BR /&gt;&lt;A href="http://www.instructables.com/id/RFID-Controls-for-Spotify-on-OSX-using-hacked-Mir/step3/Spotify-osascript-commands/" target="_blank"&gt;http://www.instructables.com/id/RFID-Controls-for-Spotify-on-OSX-using-hacked-Mir/step3/Spotify-osascript-commands/&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 21 Feb 2015 22:23:05 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1032367#M5742</guid>
      <dc:creator>RadioactiveRadz</dc:creator>
      <dc:date>2015-02-21T22:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1303424#M5743</link>
      <description>&lt;P&gt;For me, the command given by olejon worked on my Debian (Jessie) machine but not on one running Fedora 23. For the Fedora computer, here's what worked:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri spotify:track:1WNPappMd13lY5o9POZ4gU&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Mar 2016 19:54:47 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1303424#M5743</guid>
      <dc:creator>mwleeds</dc:creator>
      <dc:date>2016-03-07T19:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1317394#M5744</link>
      <description>&lt;P&gt;Weirdly enough this works for me for individual tracks for the Fedora solution, but as soon as I attempt to use for an album or playlist it just opens the respective playlist/album and doesn't start playing ala the original OP's problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any use of PlayPause just starts the last track that was waiting on Spotify when I opened it. Anyone any idea why this would be?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2016 19:29:57 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1317394#M5744</guid>
      <dc:creator>pictomtr</dc:creator>
      <dc:date>2016-03-30T19:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1322337#M5745</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.spotify.com/t5/user/viewprofilepage/user-id/4849591"&gt;@pictomtr&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;Weirdly enough this works for me for individual tracks for the Fedora solution, but as soon as I attempt to use for an album or playlist it just opens the respective playlist/album and doesn't start playing ala the original OP's problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any use of PlayPause just starts the last track that was waiting on Spotify when I opened it. Anyone any idea why this would be?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are using the new v 1.0 this is a bug in the D-Bus MPRIS implementation. In fact there are several, like it is now not possible to get PlaybackStatus. No response from Spotify yet. The behaviour has been the same from at least v 0.6 to v 0.9, so why the have broken it now I don't know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be nice if some of the Spotify Linux devs could look at this, please!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can downgrade to v 0.9, which shouldn't make you lose any important features. Check out this guide:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Remember to read the section below the guide link ("If you have already installed Spotify Beta for Linux...").&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/olejon/spotcommander/wiki/InstallOnFedora#install-the-latest-spotify-stable-version" target="_blank"&gt;https://github.com/olejon/spotcommander/wiki/InstallOnFedora#install-the-latest-spotify-stable-version&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2016 09:41:59 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1322337#M5745</guid>
      <dc:creator>olejon</dc:creator>
      <dc:date>2016-04-07T09:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1523618#M5746</link>
      <description>&lt;P&gt;have you been learning to code since kindergarten? How can you code so well, thats awsome&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2016 00:29:37 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/1523618#M5746</guid>
      <dc:creator>elwat</dc:creator>
      <dc:date>2016-12-12T00:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Commands to play songs and playlists from terminal</title>
      <link>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/2652369#M5747</link>
      <description>&lt;P&gt;That URL command doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To open an URL:&amp;nbsp;&lt;/P&gt;&lt;P&gt;qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri spotify:album:4m2880jivSbbyEGAKfITCa&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 21:15:38 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Linux/Commands-to-play-songs-and-playlists-from-terminal/m-p/2652369#M5747</guid>
      <dc:creator>idontknoooo</dc:creator>
      <dc:date>2017-10-14T21:15:38Z</dc:date>
    </item>
  </channel>
</rss>

