10 lines
172 B
Bash
10 lines
172 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
apps+=(
|
|
["LibreWolf"]="librewolf"
|
|
["Epiphany"]="epiphany"
|
|
["Dolphin"]="dolphin"
|
|
["Gwenview"]="gwenview"
|
|
["Konsole"]="konsole"
|
|
)
|