dotfiles/bin/scripts/dropdown

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