#!/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.