4 lines
107 B
Bash
4 lines
107 B
Bash
|
|
#!/usr/bin/env sh
|
||
|
|
translated=$([ "$1" == "up" ] && echo "prev" || echo "next")
|
||
|
|
bspc desktop -f $translated
|