mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
14 lines
395 B
Nix
14 lines
395 B
Nix
{}:
|
|
{
|
|
spotifyOpen = {
|
|
type = "Application";
|
|
name = "Open in Spotify";
|
|
genericName = "Music Player";
|
|
icon = "spotify-client";
|
|
terminal = false;
|
|
categories = [ "Audio" "Music" "Player" "AudioVideo" ];
|
|
exec = "qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri %U";
|
|
mimeType = [ "x-scheme-handler/spotify" ];
|
|
};
|
|
}
|