From the Terminal
How to make a launcher for Spotify in Linux that works with Spotify links
When launching Spotify in Linux by default the deb package comes with a desktop file that contains an exec that essentially just runs the "spotify" binary. Spotify does have a dbus interface for certain things. We can look for an existing process and if one is found we throw the Spotify link into dbus instead of opening another Spotify instance.
I wrote a simple launcher replacement. Just set your desktop file to use this instead of the default.
#!/bin/bash | |
# check if spotify is already running and if so just pass the uri in | |
if pgrep -f "Spotify/[0-9].[0-9].[0-9]" > /dev/null | |
then | |
busline=busline=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri $1 | |
echo "Spotify is already running" | |
echo "Sending ${busline} to dbus" | |
if command -v qdbus &> /dev/null | |
then | |
qdbus $busline | |
exit | |
fi | |
if command -v dbus-send &> /dev/null | |
then | |
dbus-send $busline | |
exit | |
fi | |
echo "No bus dispatcher found." | |
# otherwise launch spotify | |
else | |
spotify $1 &>/dev/null & | |
fi |
Slack magic login broken on Linux with KDE
What's going on?
kde-open5 is breaking the links by making all characters lowercase.
Get the link by running:
while sleep .1; do ps aux | grep slack | grep -v grep | grep magic; done
Then just run `xdg-open [the link]
`
The link should look like this:
slack://T8PPLKX2R/magic-login/3564479012256-b761e747066f87b708f43d5c0290bb076f276b121486a5fb6376af0dd7169e7d