mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-19 16:26:10 +01:00
8 lines
193 B
Bash
Executable File
8 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
#Focus nth desktop of focused monitor for i3 style keybinds
|
|
#
|
|
#super + {1-9}
|
|
# focusdesktopofthismonitor ^{1-9}
|
|
D=$@; \
|
|
bspc desktop -f "$(bspc query -D -m | sed -n "$D p")"
|