4 lines
209 B
Bash
Executable file
4 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
launch_path=$(find ${HOME}/.local/share/applications/ -iname 'appimagekit_*'"${1}"'*.desktop' -exec awk -F= '/^Exec/ {print $2; exit}' {} \; | head -n1 | cut -f1 -d" ")
|
|
shift 1
|
|
${launch_path} "$@"
|