mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-20 00:36:09 +01:00
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#! /bin/sh
|
|
# By https://github.com/tatou-tatou
|
|
id="$(bspc query -N -n "${1:-focused}" | head -n1)"
|
|
[ -z "$id" ] && exit 1
|
|
|
|
w=$(wattr w "$id")
|
|
h=$($(wattr h "$id")
|
|
|
|
if [ "$w" -gt "$h" ]; then
|
|
echo horizontal
|
|
else
|
|
echo vertical
|
|
fi
|