Browse Source

Added a script to aid in workspace renames

Samuel W. Flint 8 years ago
parent
commit
28f8569c1c
1 changed files with 8 additions and 0 deletions
  1. 8 0
      rename-workspace

+ 8 - 0
rename-workspace

@@ -0,0 +1,8 @@
+#!/bin/zsh -f
+
+if [[ $# -lt 2 ]] ; then
+    echo "rename-workspace old new"
+    exit
+fi
+
+i3-msg "rename workspace \"$1\" to \"$2\""