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
|
||||
set -euo pipefail
|
||||
set -eo pipefail
|
||||
|
||||
# Define associative array
|
||||
declare -A apps=()
|
||||
|
@ -8,7 +8,6 @@ declare -A apps=()
|
|||
mkdir -p "${HOME}/.config/launch-menu-apps.d"
|
||||
cat << EOF >> "${HOME}/.config/launch-menu-apps.d/template.sh.disabled"
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Example application"]="example-application"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["LibreWolf"]="librewolf"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["UltraISO"]="flatpak run --command=bottles-cli com.usebottles.bottles run -p UltraISO -b 'UltraISO'"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Android Studio"]="android-studio"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["ClassiCube"]="~/.apps/ClassiCube/ClassiCube"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Reload Hyprland"]="hyprctl reload"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Waycheck"]="flatpak run dev.serebit.Waycheck"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Kaiteki"]="flatpak run app.kaiteki.Kaiteki"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["LibreSprite"]="flatpak run com.github.libresprite.LibreSprite"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["OpenRGB"]="openrgb"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Example application"]="example-application"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["OpenRGB"]="openrgb"
|
||||
|
|
Loading…
Reference in a new issue