From 468b81f178bf9a4ee1b957000232d92729f77373 Mon Sep 17 00:00:00 2001 From: Bailey Buscarino Date: Sun, 24 Mar 2024 03:22:49 -0400 Subject: [PATCH] More portable shebang line --- files/builds/stable-branch/bin/install.sh | 8 ++++---- files/builds/stable-branch/bin/launcher.sh | 2 +- files/builds/stable-branch/bin/uninstall.sh | 2 +- files/builds/stable-branch/bin/update.sh | 2 +- files/builds/stable-branch/locale/cs-CZ/locale-cs.sh | 2 +- files/builds/stable-branch/locale/de-DE/locale-de.sh | 2 +- files/builds/stable-branch/locale/en-US/locale-en.sh | 2 +- files/builds/stable-branch/locale/es-ES/locale-es.sh | 2 +- files/builds/stable-branch/locale/fr-FR/locale-fr.sh | 2 +- files/builds/stable-branch/locale/it-IT/locale-it.sh | 2 +- files/builds/stable-branch/locale/ja-JP/locale-ja.sh | 2 +- files/builds/stable-branch/locale/ko-KR/locale-ko.sh | 2 +- files/builds/stable-branch/locale/locale.sh | 2 +- files/builds/stable-branch/locale/zh-CN/locale-zh.sh | 2 +- .../development-branch/speech-toolkit/cube_view_home.sh | 2 +- .../development-branch/speech-toolkit/cube_view_left.sh | 2 +- .../development-branch/speech-toolkit/cube_view_right.sh | 2 +- .../development-branch/speech-toolkit/cube_view_top.sh | 2 +- .../speech-toolkit/get_mouse_location_xy.sh | 2 +- .../development-branch/speech-toolkit/keypress.sh | 2 +- files/extras/octoprint-server/octoprint-server-install.sh | 2 +- 21 files changed, 24 insertions(+), 24 deletions(-) diff --git a/files/builds/stable-branch/bin/install.sh b/files/builds/stable-branch/bin/install.sh index ab42a09..3111c80 100644 --- a/files/builds/stable-branch/bin/install.sh +++ b/files/builds/stable-branch/bin/install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # @@ -7,8 +7,8 @@ # Author URI: https://cryinkfly.com # # License: MIT # # Copyright (c) 2020-2024 # -# Time/Date: 09:40/18.03.2024 # -# Version: 1.9.6 # +# Time/Date: 07:29/23.03.2024 # +# Version: 1.9.7 # #################################################################################################### # Path: /$HOME/.fusion360/bin/install.sh @@ -421,7 +421,7 @@ xdg-mime default adskidmgr-opener.desktop x-scheme-handler/adskidmgr # Create a link to the Wineprefixes Box: cat >> "$WP_DIRECTORY/box-run.sh" << EOF -#!/bin/bash +#!/usr/bin/env bash WP_BOX='$WP_DIRECTORY' source $SP_PATH/bin/launcher.sh EOF chmod +x "$WP_DIRECTORY/box-run.sh" diff --git a/files/builds/stable-branch/bin/launcher.sh b/files/builds/stable-branch/bin/launcher.sh index 570d667..9b91124 100644 --- a/files/builds/stable-branch/bin/launcher.sh +++ b/files/builds/stable-branch/bin/launcher.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ############################################################################# # Name: Autodesk Fusion 360 - Launcher (Linux) # diff --git a/files/builds/stable-branch/bin/uninstall.sh b/files/builds/stable-branch/bin/uninstall.sh index f65b317..cc47d8b 100644 --- a/files/builds/stable-branch/bin/uninstall.sh +++ b/files/builds/stable-branch/bin/uninstall.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ################################################################################ # Name: Autodesk Fusion 360 - Uninstall the software (Linux) # diff --git a/files/builds/stable-branch/bin/update.sh b/files/builds/stable-branch/bin/update.sh index e42c682..2276fe1 100644 --- a/files/builds/stable-branch/bin/update.sh +++ b/files/builds/stable-branch/bin/update.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Cronjob for Update (Linux) # diff --git a/files/builds/stable-branch/locale/cs-CZ/locale-cs.sh b/files/builds/stable-branch/locale/cs-CZ/locale-cs.sh index a438682..9fec2ab 100644 --- a/files/builds/stable-branch/locale/cs-CZ/locale-cs.sh +++ b/files/builds/stable-branch/locale/cs-CZ/locale-cs.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/de-DE/locale-de.sh b/files/builds/stable-branch/locale/de-DE/locale-de.sh index 764417b..2f036ee 100644 --- a/files/builds/stable-branch/locale/de-DE/locale-de.sh +++ b/files/builds/stable-branch/locale/de-DE/locale-de.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/en-US/locale-en.sh b/files/builds/stable-branch/locale/en-US/locale-en.sh index 32a5790..f57f11c 100644 --- a/files/builds/stable-branch/locale/en-US/locale-en.sh +++ b/files/builds/stable-branch/locale/en-US/locale-en.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/es-ES/locale-es.sh b/files/builds/stable-branch/locale/es-ES/locale-es.sh index 67e9e5c..b0cf691 100644 --- a/files/builds/stable-branch/locale/es-ES/locale-es.sh +++ b/files/builds/stable-branch/locale/es-ES/locale-es.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/fr-FR/locale-fr.sh b/files/builds/stable-branch/locale/fr-FR/locale-fr.sh index 6eb6599..3ff3706 100644 --- a/files/builds/stable-branch/locale/fr-FR/locale-fr.sh +++ b/files/builds/stable-branch/locale/fr-FR/locale-fr.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/it-IT/locale-it.sh b/files/builds/stable-branch/locale/it-IT/locale-it.sh index a7638e8..8843b89 100644 --- a/files/builds/stable-branch/locale/it-IT/locale-it.sh +++ b/files/builds/stable-branch/locale/it-IT/locale-it.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/ja-JP/locale-ja.sh b/files/builds/stable-branch/locale/ja-JP/locale-ja.sh index 397107e..21bd717 100644 --- a/files/builds/stable-branch/locale/ja-JP/locale-ja.sh +++ b/files/builds/stable-branch/locale/ja-JP/locale-ja.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/ko-KR/locale-ko.sh b/files/builds/stable-branch/locale/ko-KR/locale-ko.sh index 406d6cc..c549b99 100644 --- a/files/builds/stable-branch/locale/ko-KR/locale-ko.sh +++ b/files/builds/stable-branch/locale/ko-KR/locale-ko.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/locale.sh b/files/builds/stable-branch/locale/locale.sh index 3af4e4a..725e0fb 100644 --- a/files/builds/stable-branch/locale/locale.sh +++ b/files/builds/stable-branch/locale/locale.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/builds/stable-branch/locale/zh-CN/locale-zh.sh b/files/builds/stable-branch/locale/zh-CN/locale-zh.sh index cde7881..dff4a43 100644 --- a/files/builds/stable-branch/locale/zh-CN/locale-zh.sh +++ b/files/builds/stable-branch/locale/zh-CN/locale-zh.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash #################################################################################################### # Name: Autodesk Fusion 360 - Setup Wizard (Linux) # diff --git a/files/extensions/development-branch/speech-toolkit/cube_view_home.sh b/files/extensions/development-branch/speech-toolkit/cube_view_home.sh index c366156..1b6f6e8 100644 --- a/files/extensions/development-branch/speech-toolkit/cube_view_home.sh +++ b/files/extensions/development-branch/speech-toolkit/cube_view_home.sh @@ -1,3 +1,3 @@ -#!/bin/bash +#!/usr/bin/env bash xdotool getactivewindow && xdotool mousemove 1812 181 click 1 \ No newline at end of file diff --git a/files/extensions/development-branch/speech-toolkit/cube_view_left.sh b/files/extensions/development-branch/speech-toolkit/cube_view_left.sh index df06d1e..bb160f0 100644 --- a/files/extensions/development-branch/speech-toolkit/cube_view_left.sh +++ b/files/extensions/development-branch/speech-toolkit/cube_view_left.sh @@ -1,3 +1,3 @@ -#!/bin/bash +#!/usr/bin/env bash xdotool getactivewindow && xdotool mousemove 1825 230 click 1 \ No newline at end of file diff --git a/files/extensions/development-branch/speech-toolkit/cube_view_right.sh b/files/extensions/development-branch/speech-toolkit/cube_view_right.sh index cfab061..9505dd3 100644 --- a/files/extensions/development-branch/speech-toolkit/cube_view_right.sh +++ b/files/extensions/development-branch/speech-toolkit/cube_view_right.sh @@ -1,3 +1,3 @@ -#!/bin/bash +#!/usr/bin/env bash xdotool getactivewindow && xdotool mousemove 1888 228 click 1 \ No newline at end of file diff --git a/files/extensions/development-branch/speech-toolkit/cube_view_top.sh b/files/extensions/development-branch/speech-toolkit/cube_view_top.sh index 3fc9692..60b7d6e 100644 --- a/files/extensions/development-branch/speech-toolkit/cube_view_top.sh +++ b/files/extensions/development-branch/speech-toolkit/cube_view_top.sh @@ -1,3 +1,3 @@ -#!/bin/bash +#!/usr/bin/env bash xdotool getactivewindow && xdotool mousemove 1858 209 click 1 \ No newline at end of file diff --git a/files/extensions/development-branch/speech-toolkit/get_mouse_location_xy.sh b/files/extensions/development-branch/speech-toolkit/get_mouse_location_xy.sh index bc7a5c3..2f1dc6e 100644 --- a/files/extensions/development-branch/speech-toolkit/get_mouse_location_xy.sh +++ b/files/extensions/development-branch/speech-toolkit/get_mouse_location_xy.sh @@ -1,3 +1,3 @@ -#!/bin/bash +#!/usr/bin/env bash xdotool getmouselocation \ No newline at end of file diff --git a/files/extensions/development-branch/speech-toolkit/keypress.sh b/files/extensions/development-branch/speech-toolkit/keypress.sh index 246dd08..13ca1c6 100644 --- a/files/extensions/development-branch/speech-toolkit/keypress.sh +++ b/files/extensions/development-branch/speech-toolkit/keypress.sh @@ -1,3 +1,3 @@ -#!/bin/bash +#!/usr/bin/env bash xdotool getactivewindow && xdotool keydown $1 && xdotool keyup $1 diff --git a/files/extras/octoprint-server/octoprint-server-install.sh b/files/extras/octoprint-server/octoprint-server-install.sh index 40a65f9..bb54002 100644 --- a/files/extras/octoprint-server/octoprint-server-install.sh +++ b/files/extras/octoprint-server/octoprint-server-install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ############################################################################## # Name: OctoPrint (Server) - Installationsskript (Linux)