Is there any way to shut VLC down after playing back a video file?
According to this page:
http://wiki.videolan.org/How_to_shut_do ... uter#Linux
It should be as simple as making a .sh file. However, things got a little more complicated when it turned out the provided script wasn't working and required root.
I changed the script simply to:
Code: Select all
#! /bin/sh
vlc && /sbin/shutdown -h now
Is that Wiki page outdated perhaps? Or am I doing something wrong? Thanks!