pinstall.sh 237 B

123456789101112
  1. #!/bin/sh
  2. if [ ! "`pwd`" = "/" ];then
  3. echo "Configuring VLC ..."
  4. echo '#!/bin/sh' > ./usr/local/bin/defaultmediaplayer
  5. echo 'exec vlc "$@"' >> ./usr/local/bin/defaultmediaplayer
  6. chmod 755 ./usr/local/bin/defaultmediaplayer
  7. fi