Add .local/bin/fix-loopback Add .local/bin/hyprtoggle Add .local/bin/localhost Add .local/bin/low-battery-warn Add .local/bin/make-pwa Add .local/bin/niri-cycle Add .local/bin/push-chezmoi Add .local/bin/tmux-sessionizer Add .local/bin/hooks/generic
11 lines
204 B
Bash
11 lines
204 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
next="focus-column-right-or-first"
|
|
|
|
if [[ "${1:-}" == "--back" ]]; then
|
|
next="focus-column-left-or-last"
|
|
fi
|
|
|
|
niri msg action "$next"
|
|
niri msg action center-column
|