O atalho da área de trabalho não funciona para o script, mas o script funciona bem

2
#!/bin/bash/
ls -1 *.mp3 > playlist.m3u
for (( ; ; )) do mplayer -playlist playlist.m3u; sleep 0.1; done

Este é o script e funciona!

[Desktop Entry]
Version=1.0
Type=Application
Name=Play
Comment=Play music
Exec=bash /home/awesome/Desktop/test/play.sh
Icon=
Terminal=true
GenericName=Player
    
por Da No 30.08.2014 / 22:57

1 resposta

2

Para conseguir isso, use o seguinte:

[Desktop Entry]
Version=1.0
Type=Application
Name=Play
Comment=Play music
Exec=bash /home/awesome/Desktop/test/play.sh
Path=/home/awesome/Desktop/test/
Icon=
Terminal=true
GenericName=Player
    
por Tim 30.08.2014 / 23:18