aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/tabbed.sh
diff options
context:
space:
mode:
authorNikita Langer <nikitalanger@icloud.com>2026-04-06 21:07:39 +0200
committerNikita Langer <nikitalanger@icloud.com>2026-04-06 21:07:39 +0200
commit703bc5124519189b308345aad056e42c06d5dc8b (patch)
tree7936ec51511f861455ed7c485fb8c585546c9280 /scripts/tabbed.sh
downloaddwm-703bc5124519189b308345aad056e42c06d5dc8b.tar.gz
dwm-703bc5124519189b308345aad056e42c06d5dc8b.tar.bz2
dwm-703bc5124519189b308345aad056e42c06d5dc8b.tar.xz
dwm-703bc5124519189b308345aad056e42c06d5dc8b.zip
commit
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