From 64b3f5883e5523e5193ba1583790cc8cfafcfe6e Mon Sep 17 00:00:00 2001 From: Jokler Date: Tue, 14 May 2019 22:13:09 +0200 Subject: Add scripts, polybar and i3 config files --- scripts/autoscript | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 scripts/autoscript (limited to 'scripts/autoscript') diff --git a/scripts/autoscript b/scripts/autoscript new file mode 100755 index 0000000..c29bcc9 --- /dev/null +++ b/scripts/autoscript @@ -0,0 +1,19 @@ +#!/bin/bash + +if [ "$#" -ne 1 ]; then + echo "Exactly 1 argument is required" + exit +fi + +SCRIPT_FOLDER="$HOME/scripts" +SCRIPT_FILE="$SCRIPT_FOLDER/$1" + +if [[ -f $SCRIPT_FILE ]]; then + gvim $SCRIPT_FILE +else + echo -e '#!/bin/bash\n\n# vim: expandtab sw=2 ts=2' > $SCRIPT_FILE + chmod +x $SCRIPT_FILE + gvim $SCRIPT_FILE & +fi + +# vim: expandtab sw=2 ts=2 -- cgit v1.2.3-70-g09d2