summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-01-30 00:34:38 +0100
committerGravatar Tom Willemsen2012-01-30 00:34:38 +0100
commit3c43c86150e7e58be6f024c8f5d320c3b810fc04 (patch)
tree262ee47efa69461ee0e58644087ecd1122c5df3e
parent412b27682dc1552a97bfd32b06cb8994af06666d (diff)
downloaddotfiles-3c43c86150e7e58be6f024c8f5d320c3b810fc04.tar.gz
dotfiles-3c43c86150e7e58be6f024c8f5d320c3b810fc04.zip
Added some WM functions
-rwxr-xr-xbin/kill_tag10
-rwxr-xr-xbin/switch_tags10
2 files changed, 20 insertions, 0 deletions
diff --git a/bin/kill_tag b/bin/kill_tag
new file mode 100755
index 0000000..79bbf5a
--- /dev/null
+++ b/bin/kill_tag
@@ -0,0 +1,10 @@
+#!/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
diff --git a/bin/switch_tags b/bin/switch_tags
new file mode 100755
index 0000000..55eda0a
--- /dev/null
+++ b/bin/switch_tags
@@ -0,0 +1,10 @@
+#!/bin/zsh
+
+TAGS=( $(herbstclient tag_status 0 | tr ":\!.+#" " ") )
+FOO=$(for i in "${TAGS[@]}"; do echo $i; done | dmenu)
+
+if [[ "${TAGS[@]}" != *"$FOO"* ]]; then
+ herbstclient add $FOO
+fi
+
+herbstclient use $FOO