diff options
author | sinanmohd <sinan@firemail.cc> | 2023-03-18 13:56:24 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-03-18 13:57:20 +0530 |
commit | e86f3335854160a031a671cd79653654289f95ff (patch) | |
tree | f388dc8d3f867a5ab5c25e802587167f75eb2514 /menu_run | |
parent | 3d6a9d7c94a8562ae22d41147379d72cb269c110 (diff) |
menu_run: initial commit: replacement for dmenu_run
using only built in sh commands
Diffstat (limited to 'menu_run')
-rwxr-xr-x | menu_run | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/menu_run b/menu_run new file mode 100755 index 0000000..0d5a0c9 --- /dev/null +++ b/menu_run @@ -0,0 +1,47 @@ +#!/bin/sh + +menu="wmenu" +cache_dir="${XDG_CACHE_HOME:-"$HOME/.cache"}" +cache="$cache_dir/wmenu_run" + +uptodate() +{ + IFS=: + for path in $PATH + do + test "$path" -nt "$cache" && + return 1 + done + + return 0 +} + +get_bin() +{ + IFS=: + for path in $PATH + do + for bin in "$path"/* + do + [ -x "$bin" ] && + echo "${bin##*/}" + done + done +} + +main() +{ + [ -d "$cache_dir" ] || + mkdir -p "$cache_dir" + [ -z "$WAYLAND_DISPLAY" ] && + menu="dmenu" + + if [ -f "$cache" ] && uptodate + then + "$menu" "$@" < "$cache" | ${SHELL:-"/bin/sh"} & + else + get_bin | sort -u | tee "$cache" | "$menu" "$@" | ${SHELL:-"/bin/sh"} & + fi +} + +main "$@" |