summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-04-21 16:09:53 +0100
committerUrbain Vaes <urbain@vaes.uk>2016-04-21 16:09:53 +0100
commit3437dd6ab00d59ae96fc193a9a4024aacc04138e (patch)
treecfc19afc77a21a06fb28eadca9f8932aa6ea1a9a /bin
parentd13ea66992cf451850630904cacbfe111187d02b (diff)
Fix mistake in colorscheme function
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bin/rename_workspace4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bin/rename_workspace b/bin/bin/rename_workspace
index 7636fd2..61fffd3 100755
--- a/bin/bin/rename_workspace
+++ b/bin/bin/rename_workspace
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
-workspace=$(i3-msg -t get_outputs | grep -Po '"current_workspace":"[^\"]*"' | sed 's/"current_workspace":"\([^"]\+\)"/\1/g')
-number=$(echo "${workspace//[!0-9]}")
+workspace=$(i3-msg -t get_workspaces | grep -Po '{[^}]*"focused":true[^}]*}' | sed 's/.*"name":"\([^"]*\)".*$/\1/g')
+number=$(i3-msg -t get_workspaces | grep -Po '{[^}]*"focused":true[^}]*}' | sed 's/{"num":\([^,]*\),.*$/\1/g')
new_name=$(zenity --entry --title="Rename workspace" --entry-text "$workspace")
if [[ "$new_name" != *:* ]]; then