Remove set -euo pipefail from menu scripts
This commit is contained in:
parent
180ba5f7df
commit
9926ec4048
12 changed files with 1 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -eo pipefail
|
||||||
|
|
||||||
# Define associative array
|
# Define associative array
|
||||||
declare -A apps=()
|
declare -A apps=()
|
||||||
|
@ -8,7 +8,6 @@ declare -A apps=()
|
||||||
mkdir -p "${HOME}/.config/launch-menu-apps.d"
|
mkdir -p "${HOME}/.config/launch-menu-apps.d"
|
||||||
cat << EOF >> "${HOME}/.config/launch-menu-apps.d/template.sh.disabled"
|
cat << EOF >> "${HOME}/.config/launch-menu-apps.d/template.sh.disabled"
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["Example application"]="example-application"
|
["Example application"]="example-application"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["LibreWolf"]="librewolf"
|
["LibreWolf"]="librewolf"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["UltraISO"]="flatpak run --command=bottles-cli com.usebottles.bottles run -p UltraISO -b 'UltraISO'"
|
["UltraISO"]="flatpak run --command=bottles-cli com.usebottles.bottles run -p UltraISO -b 'UltraISO'"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["Android Studio"]="android-studio"
|
["Android Studio"]="android-studio"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["ClassiCube"]="~/.apps/ClassiCube/ClassiCube"
|
["ClassiCube"]="~/.apps/ClassiCube/ClassiCube"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["Reload Hyprland"]="hyprctl reload"
|
["Reload Hyprland"]="hyprctl reload"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["Waycheck"]="flatpak run dev.serebit.Waycheck"
|
["Waycheck"]="flatpak run dev.serebit.Waycheck"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["Kaiteki"]="flatpak run app.kaiteki.Kaiteki"
|
["Kaiteki"]="flatpak run app.kaiteki.Kaiteki"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["LibreSprite"]="flatpak run com.github.libresprite.LibreSprite"
|
["LibreSprite"]="flatpak run com.github.libresprite.LibreSprite"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["OpenRGB"]="openrgb"
|
["OpenRGB"]="openrgb"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["Example application"]="example-application"
|
["Example application"]="example-application"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
apps+=(
|
apps+=(
|
||||||
["OpenRGB"]="openrgb"
|
["OpenRGB"]="openrgb"
|
||||||
|
|
Loading…
Reference in a new issue