2020-07-04 14:23:27 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Open a terminal window in the same directory as the currently active window.
|
|
|
|
|
2023-10-12 15:12:12 +02:00
|
|
|
PID=$(xprop -id "$(xprop -root | xprop -root | sed -n "/_NET_ACTIVE_WINDOW/ s/^.*# // p")" | sed -n "/PID/ s/^.*= // p")
|
|
|
|
PID="$(pstree -lpA "$PID")"
|
|
|
|
PID="${PID##*(}"
|
|
|
|
PID="${PID%)}"
|
2020-07-04 14:23:27 +02:00
|
|
|
cd "$(readlink /proc/"$PID"/cwd)" || return 1
|
|
|
|
"$TERMINAL"
|