aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/wayland
diff options
context:
space:
mode:
Diffstat (limited to 'wayland')
-rwxr-xr-xwayland/.local/bin/wmenu10
-rwxr-xr-xwayland/.local/bin/wmenu-run34
2 files changed, 0 insertions, 44 deletions
diff --git a/wayland/.local/bin/wmenu b/wayland/.local/bin/wmenu
deleted file mode 100755
index 0f5c0f1..0000000
--- a/wayland/.local/bin/wmenu
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-exec $(command -pv wmenu) -i -f 'monospace 12' \
- -n"#$BASE16_COLOR_06_HEX" \
- -N"#$BASE16_COLOR_00_HEX" \
- -S"#$BASE16_COLOR_00_HEX" \
- -s"#$BASE16_COLOR_09_HEX" \
- -m"#$BASE16_COLOR_06_HEX" \
- -M"#$BASE16_COLOR_0C_HEX" \
- "$@"
diff --git a/wayland/.local/bin/wmenu-run b/wayland/.local/bin/wmenu-run
deleted file mode 100755
index fd1f669..0000000
--- a/wayland/.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" | sway-menu
-else
- cat "$cache"
-fi