Save Last Played Video's on Linux
// after you played the video, you can save the video by searching /tmp for fla files
#!/bin/bash
name=$(/usr/bin/zenity --entry --title="Name your Video" --height=100 --width=300 --text="Please name your video ")
cp /tmp/Fla* ~/Videos/"$name"
0 Comments