
- wsc (#Q) - move all numbered workspaces to the center - wsn (#Y) - new named workspace - wsr (#+Y) - rename current workspace
6 lines
95 B
Bash
Executable file
6 lines
95 B
Bash
Executable file
#!/bin/sh
|
|
|
|
INP="$(wofi --dmenu -H 1 -W 5)"
|
|
[ -z "$INP" ] && exit
|
|
|
|
swaymsg "workspace \"$INP\""
|