aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/tabbed.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/tabbed.sh')
-rwxr-xr-xscripts/tabbed.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/tabbed.sh b/scripts/tabbed.sh
new file mode 100755
index 0000000..2082b67
--- /dev/null
+++ b/scripts/tabbed.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+target=$(printf "%s\n" \
+"st" \
+"Zathura" | dmenu -p "tabbed" -c -l 6)
+
+case "$target" in
+ "Zathura")
+ tabbed zathura -e
+ ;;
+ "st")
+ tabbed -r 2 st -w ''
+ ;;
+esac