dotfiles/bin/.bin/auto-presel
Anthony Debucquoy 4c27a8e3f1
Adding bin files
tmuxssh allow to connect and attach or create a tmux session.
2023-11-29 13:12:15 +01:00

14 lines
354 B
Bash
Executable File

#! /bin/sh
# Original script by https://github.com/ikn/ , modified to use splitting method of
# https://github.com/baskerville/bspwm/tree/master/examples/external_rules/pseudo_automatic_mode
fwid=$(bspc query -N -n focused)
wattr wh $fwid | {
read width height
if [ $width -gt $height ] ; then
bspc node -p \~east
else
bspc node -p \~south
fi
}