From 99702320922e5525ef1bad2bf6c2807fa479e573 Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Mon, 10 Jun 2024 19:38:46 -0500 Subject: fix(sway): fix sway-menu-run --- sway/.local/bin/wmenu-run | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 sway/.local/bin/wmenu-run (limited to 'sway/.local/bin/wmenu-run') diff --git a/sway/.local/bin/wmenu-run b/sway/.local/bin/wmenu-run deleted file mode 100755 index 2cda132..0000000 --- a/sway/.local/bin/wmenu-run +++ /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 -- cgit v1.2.3-70-g09d2