From 45abf86a170197b51fad30ddf8df9f3677a0f5e0 Mon Sep 17 00:00:00 2001 From: Markus Date: Sat, 13 Feb 2021 17:15:43 +0100 Subject: [PATCH] Added close-vlc.ps1 --- Data/scripts.csv | 1 + README.md | 1 + Scripts/close-vlc.ps1 | 9 +++++++++ 3 files changed, 11 insertions(+) create mode 100644 Scripts/close-vlc.ps1 diff --git a/Data/scripts.csv b/Data/scripts.csv index 340d784d..d9a6c311 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -14,6 +14,7 @@ close-file-explorer.ps1, closes Microsoft File Explorer gracefully close-program.ps1, closes the given program gracefully close-system-settings.ps1 - closes the System Settings gracefully close-thunderbird.ps1, closes Mozilla Thunderbird gracefully +close-vlc.ps1 - closes the VLC media player gracefully close-windows-terminal.ps1, closes Windows Terminal gracefully configure-git.ps1, sets up the Git user configuration csv-to-text.ps1, converts the given CSV file into a text list diff --git a/README.md b/README.md index 4f548fca..b45c3b26 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Table of Contents * [close-program.ps1](Scripts/close-program.ps1) - closes the given program gracefully * [close-system-settings.ps1](Scripts/close-system-settings.ps1) - closes the System Settings gracefully * [close-thunderbird.ps1](Scripts/close-thunderbird.ps1) - closes Mozilla Thunderbird gracefully +* [close-vlc.ps1](Scripts/close-vlc.ps1) - closes the VLC media player gracefully * [close-windows-terminal.ps1](Scripts/close-windows-terminal.ps1) - closes Windows Terminal gracefully * [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration * [csv-to-text.ps1](Scripts/csv-to-text.ps1) - converts the given CSV file into a text list diff --git a/Scripts/close-vlc.ps1 b/Scripts/close-vlc.ps1 new file mode 100644 index 00000000..3ee5917e --- /dev/null +++ b/Scripts/close-vlc.ps1 @@ -0,0 +1,9 @@ +#!/bin/powershell +<# +.SYNTAX ./close-vlc.ps1 +.DESCRIPTION closes the VLC media player gracefully +.LINK https://github.com/fleschutz/PowerShell +.NOTES Author: Markus Fleschutz / License: CC0 +#> + +./close-program "VLC media player" "vlc"