Files
scripts-bash/launcher_apps.sh
2026-03-30 15:48:25 -06:00

19 lines
429 B
Bash
Executable File

#!/bin/bash
apps=""
opciones_apps=""
while read -r icono nombre comando ; do
nombre=$( printf '%-40s' "$nombre" )
opciones_apps=$opciones_apps$icono" |"$nombre"|"$comando"\n"
done < ~/scripts/aplicaciones.txt
dir="$HOME/.config/rofi/launchers/type-7"
theme='style-2'
app=$( echo -e "$opciones_apps" | rofi -show -dmenu -p "Ejecutar aplicacion" )
IFS='|' read -r -a partes <<< "$app"
command=${partes[3]}
$command &