mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
9 lines
285 B
Bash
Executable file
9 lines
285 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# [[file:../../Emacs.org::*i3 integration][i3 integration:1]]
|
|
if [[ $(xdotool getactivewindow getwindowname) =~ ^emacs(:.*)?@.* ]]; then
|
|
command="(my/emacs-i3-integration \"$@\")"
|
|
emacsclient -e "$command"
|
|
else
|
|
i3-msg $@
|
|
fi
|
|
# i3 integration:1 ends here
|