mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
11 lines
345 B
Bash
Executable file
11 lines
345 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# [[file:../../Desktop.org::*Launch script][Launch script:1]]
|
|
CLASSNAME="dropdown_tmux"
|
|
COMMAND="alacritty --class $CLASSNAME -e tmux new-session -s $CLASSNAME"
|
|
pid=$(xdotool search --classname "dropdown_tmux")
|
|
if [[ ! -z $pid ]]; then
|
|
i3-msg scratchpad show
|
|
else
|
|
setsid -f ${COMMAND}
|
|
fi
|
|
# Launch script:1 ends here
|