1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
# This Script shows the list generated by you in appslist file
# Its based on Luke Smith's dmenunicode script and tutorialvids script
appslist="$HOME/.local/share/larbs/appslist"
less "$appslist" | grep -P "^$(less "$appslist" | grep ";" | sed 's/\t.*//g' | dmenu -i -p "Launch AppImage: (ESC to cancel)" -l 170 | awk '{print $1}')\s" | sed 's/.*\t;//' | ${SHELL:-"/bin/bash"} &
# Edit "appslist" to give proper path to your appslist file.
# the above script will echo out everything there is before "tabs" and execute rest after ";"
# So dont forget to leave one tab before ";" in appslist file.
|
x
Notes
A Simple Dmenu Script for Launching AppImages and Binary Builds from remote/fuse directories.
Github Repo: https://github.com/void00r/AppImages-Launcher
void00r said about 4 years ago
For some reason second file wont showing completely so head to gihub link.