share: utils: remove obsolete gnome-vlc-default script

This script works using tools that operate on the
no longer used GConf database.
This commit is contained in:
Marvin Scholz 2022-07-28 00:52:14 +02:00 committed by Hugo Beauzée-Luyssen
parent 1336447566
commit 2e72899ec2
2 changed files with 0 additions and 29 deletions

View File

@ -47,7 +47,6 @@ dist_icons128_DATA = icons/128x128/vlc.png icons/128x128/vlc-xmas.png \
dist_icons256_DATA = icons/256x256/vlc.png
nobase_dist_pkgdata_SCRIPTS = \
utils/gnome-vlc-default.sh \
utils/audio-vlc-default.sh \
utils/video-vlc-default.sh \
$(NULL)

View File

@ -1,28 +0,0 @@
#!/bin/sh
# share/applications/gnome-vlc-default.sh
# $Id$
#
# Copyright (C) 2006, VideoLAN team
# Authors: Torsten Spindler
# Jean-Paul Saman <jpsaman _at_ videolan dot org>
#
# Set vlc as default player on the gnome desktop
# Tested on Ubuntu 6.10 Edgy
#
GCONFTOOL=gconftool
if test -x /usr/bin/gconftool; then
GCONFTOOL=/usr/bin/gconftool
OPTS="-t string -s"
fi
if test -x /usr/bin/gconftool-2; then
GCONFTOOL=/usr/bin/gconftool-2
OPTS="--type string --set"
fi
$GCONFTOOL $OPTS /desktop/gnome/volume_manager/autoplay_vcd_command "vlc %m"
$GCONFTOOL $OPTS /desktop/gnome/volume_manager/autoplay_dvd_command "vlc %m"
$GCONFTOOL $OPTS /desktop/gnome/url-handlers/mms "vlc %s"
$GCONFTOOL $OPTS /desktop/gnome/url-handlers/mmsh "vlc %s"
$GCONFTOOL $OPTS /desktop/gnome/url-handlers/rtsp "vlc %s"
$GCONFTOOL $OPTS /desktop/gnome/url-handlers/rtp "vlc %s"
exit 0