mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
18 lines
485 B
Nix
18 lines
485 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
xdg = {
|
||
|
desktopEntries = {
|
||
|
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" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|