aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sway/.local/bin/wmenu_path
diff options
context:
space:
mode:
Diffstat (limited to 'sway/.local/bin/wmenu_path')
-rwxr-xr-xsway/.local/bin/wmenu_path34
1 files changed, 0 insertions, 34 deletions
diff --git a/sway/.local/bin/wmenu_path b/sway/.local/bin/wmenu_path
deleted file mode 100755
index 2cda132..0000000
--- a/sway/.local/bin/wmenu_path
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-cache_dir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
-cache="$cache_dir/wmenu_run"
-
-uptodate() {
- IFS=:
- for path in $PATH; do
- if test "$path" -nt "$cache"; then
- return 1
- fi
- done
-
- return 0
-}
-
-get_bin() {
- IFS=:
- for path in $PATH; do
- for bin in "$path"/*; do
- if [ -x "$bin" ]; then
- echo "${bin##*/}"
- fi
- done
- done
-}
-
-[ ! -e "$cache_dir" ] && mkdir -p "$cache_dir"
-
-if [ ! -e "$cache" ] || ! uptodate; then
- get_bin | sort -u | tee "$cache"
-else
- cat "$cache"
-fi