Browse Source
This tiny patch enables opening of VideoCD/AudioCD/DVD discs with VLC in KDE when inserted, which was broken before. Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>pull/2/head
committed by
Rémi Denis-Courmont
3 changed files with 5 additions and 5 deletions
@ -1,10 +1,10 @@ |
|||
[Desktop Entry] |
|||
X-KDE-Solid-Predicate=[ StorageVolume.ignored == false AND OpticalDisc.availableContent & 'VideoDvd' ] |
|||
X-KDE-Solid-Predicate=[ StorageVolume.ignored == false AND OpticalDisc.availableContent == 'Data|VideoDvd' ] |
|||
Type=Service |
|||
Actions=open; |
|||
|
|||
[Desktop Action open] |
|||
Name=Open with VLC media player |
|||
Exec=vlc dvd:// |
|||
Exec=vlc dvd://%d |
|||
Icon=vlc |
|||
|
|||
|
|||
@ -1,10 +1,10 @@ |
|||
[Desktop Entry] |
|||
X-KDE-Solid-Predicate=[ StorageVolume.ignored == false AND OpticalDisc.availableContent & 'VideoCd|SuperVideoCd' ] |
|||
X-KDE-Solid-Predicate=[ StorageVolume.ignored == false AND OpticalDisc.availableContent == 'VideoCd|SuperVideoCd' ] |
|||
Type=Service |
|||
Actions=open; |
|||
|
|||
[Desktop Action open] |
|||
Name=Open with VLC media player |
|||
Exec=vlc vcd:// |
|||
Exec=vlc vcd://%d |
|||
Icon=vlc |
|||
|
|||
|
|||
Loading…
Reference in new issue