From 981d8a9f49dea9c6435c97b6948c50995ad40258 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Tue, 3 Mar 2020 22:20:58 +0000 Subject: Fix workspace script --- bin/.local/bin/workspace | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/.local') diff --git a/bin/.local/bin/workspace b/bin/.local/bin/workspace index 4f2ab67..b3fdfaa 100755 --- a/bin/.local/bin/workspace +++ b/bin/.local/bin/workspace @@ -1,13 +1,13 @@ #!/usr/bin/env bash -# List of workspaces: (id, number, name) +# List of workspaces: ( number, name, focused) workspaces=$(i3-msg -t get_workspaces | awk 'BEGIN { RS="(},{)|(\\[{)|(}\\])"; FPAT="([^,:\"]+)|([^,\"]+:[^,\"]+)|([^,]+{[^}]+})" } $0 !~ "^\\s*$" { gsub(/"/, "", $4) - print $4, $6 + print $4, $6, $10 }' | sort) -- cgit v1.2.3