guest@dotshare [~/groups/misc/misc] $ ls ALauncher-Dmenu-Script-to-Launch-AppImges/ | cat

ALauncher Dmenu Script to Launch AppImges (scrot) (+1 likes)

void00r Oct 30, 2020 (misc/misc)

ALauncher_Script(raw, dl)

SCROT

 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.

CLICK TO VIEW

x

AppsList(raw, dl)

1
--------Browsers----------------------------------------------	;exec 'myprograms'
 

x

Notes

A Simple Dmenu Script for Launching AppImages and Binary Builds from remote/fuse directories.
Github Repo: https://github.com/void00r/AppImages-Launcher

Comments

void00r said about 3 years ago

For some reason second file wont showing completely so head to gihub link.