From 164e54bafc7c6450ce71f9571d5b774cff310557 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Tue, 8 Mar 2016 11:49:33 +0000 Subject: Add Khoi's scripts --- bin/rename_workspace | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 bin/rename_workspace (limited to 'bin/rename_workspace') diff --git a/bin/rename_workspace b/bin/rename_workspace new file mode 100755 index 0000000..7636fd2 --- /dev/null +++ b/bin/rename_workspace @@ -0,0 +1,12 @@ +#!/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]}") + +new_name=$(zenity --entry --title="Rename workspace" --entry-text "$workspace") +if [[ "$new_name" != *:* ]]; then + new_name="$number:$new_name" +fi + +echo $new_name +exec i3-msg rename workspace to "$new_name" -- cgit v1.2.3