diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-04-21 16:09:53 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-04-21 16:09:53 +0100 |
commit | 3437dd6ab00d59ae96fc193a9a4024aacc04138e (patch) | |
tree | cfc19afc77a21a06fb28eadca9f8932aa6ea1a9a /bin | |
parent | d13ea66992cf451850630904cacbfe111187d02b (diff) |
Fix mistake in colorscheme function
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/bin/rename_workspace | 4 |
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 |