aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sway/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to 'sway/.local/bin')
-rwxr-xr-xsway/.local/bin/sway-menu10
-rwxr-xr-xsway/.local/bin/sway-menu-run34
2 files changed, 0 insertions, 44 deletions
diff --git a/sway/.local/bin/sway-menu b/sway/.local/bin/sway-menu
deleted file mode 100755
index 6bafccc..0000000
--- a/sway/.local/bin/sway-menu
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-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/sway/.local/bin/sway-menu-run b/sway/.local/bin/sway-menu-run
deleted file mode 100755
index 318e54d..0000000
--- a/sway/.local/bin/sway-menu-run
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-cache_dir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
-cache="$cache_dir/sway-menu-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