7 lines
157 B
Bash
7 lines
157 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
apps+=(
|
|
["Example application"]="example-application"
|
|
["Test script"]="/home/jeremystartm/.local/bin/test-script"
|
|
)
|