aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/graphics/i3/dynamic-tags/switch.sh
blob: 9c50eb4808328f7355f3aad655d4579a35d211d1 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
### Move the focus to a particular workspace using dmenu.

set -u

I3MSG=$(command -v i3-msg) || exit 1
JQ=$(command -v jq) || exit 2

$I3MSG workspace $($I3MSG -t get_workspaces | $JQ -M '.[] | .name' | tr -d '"' | sort -u | dmenu -b -i "$@")