summaryrefslogtreecommitdiffstats
path: root/bin/kill_tag
diff options
context:
space:
mode:
Diffstat (limited to 'bin/kill_tag')
-rwxr-xr-xbin/kill_tag10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/kill_tag b/bin/kill_tag
deleted file mode 100755
index 79bbf5a..0000000
--- a/bin/kill_tag
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/zsh
-
-TAGS=( $(herbstclient tag_status 0 | tr ":\!.+#" " ") )
-FOO=$(for i in "${TAGS[@]}"; do echo $i; done | dmenu)
-
-if [[ "${TAGS[@]}" == *"$FOO"* ]]; then
- herbstclient merge_tag $FOO
-else
- notify-send "Unknown tag: $FOO"
-fi