mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
14 lines
468 B
Bash
Executable File
14 lines
468 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This Script shows the Apps list generated by you in appslist file
|
|
# Its based on Luke Smith's dmenunicode script and tutorialvids script
|
|
|
|
appslist="/home/voidme/.local/share/larbs/appslist"
|
|
|
|
less "$appslist" | grep -P "^$(less "$appslist" | grep ";" | sed 's/\t.*//g' | dmenu -i -p "All Programs: (ESC to cancel)" -l 20 | awk '{print $1}')\s" | sed 's/.*\t;//' | ${SHELL:-"/bin/bash"} &
|
|
|
|
|
|
#dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &
|
|
|
|
#xargs -r st -e
|