mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
7 lines
274 B
Bash
Executable file
7 lines
274 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# [[file:../../Desktop.org::*Move & resize windows][Move & resize windows:1]]
|
|
if [[ $(xdotool getactivewindow getwindowname) =~ ^emacs(:.*)?@.* ]]; then
|
|
emacsclient -e "(balance-windows)" &
|
|
fi
|
|
i3_balance_workspace
|
|
# Move & resize windows:1 ends here
|