aboutsummaryrefslogtreecommitdiff
path: root/rofi/rename.sh
blob: dcdbcd8e18a4fb5b5d3f0069951dd901a0a0fb1f (plain)
1
2
3
4
5
6
7
#!/bin/sh
if [ -z $1 ]; then
  exit 0
else
  i3-msg "rename workspace to ${1}" > /dev/null
  exit 1
fi