diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-16 16:16:11 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-16 16:16:11 +0200 |
commit | 2dab2233ef9cb54a3878e0120016d542045c7ee8 (patch) | |
tree | 13f3f086adbe5edca4b0c6d3527bd040a50f627a /bin/guiscripts/osurftabs | |
parent | 2a9d0908651ac236855fa515e14a83bada3ad7f9 (diff) |
checkpoint
Diffstat (limited to 'bin/guiscripts/osurftabs')
-rwxr-xr-x | bin/guiscripts/osurftabs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/guiscripts/osurftabs b/bin/guiscripts/osurftabs new file mode 100755 index 0000000..d41424b --- /dev/null +++ b/bin/guiscripts/osurftabs @@ -0,0 +1,12 @@ +#!/bin/sh + +# list surf tabbed windows + +# dependencies: lsw, dmenu, xprop +# expects the tabbed windows to be named 'tabbed-surf' +lsw | cut -f1 -d' ' | + while read -r winid + do + [ "tabbed-surf" = "$(xprop -id "$winid" WM_CLASS | cut -f2 -d'"')" ] && + printf '%s %s\n' "$winid" "$(xprop -id "$winid" WM_NAME | cut -f2 -d'"')" + done |