10 lines
346 B
Bash
Executable File
10 lines
346 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
WINDOW_ID=$(xdotool getactivewindow)
|
|
WM_NAME=$(xprop -id $WINDOW_ID WM_NAME | cut -d '"' -f 2)
|
|
|
|
if [ -f $HOME/.config/terminalscwd/$WM_NAME.ssh ]; then
|
|
echo $(cat $HOME/.config/terminalscwd/$WM_NAME.ssh) > ~/toto.txt
|
|
alacritty -e sh -c "PARENT_TERMINAL=$WM_NAME ssh $(cat $HOME/.config/terminalscwd/$WM_NAME.ssh)"
|
|
fi
|