petits-scripts-persos/term

5 lines
177 B
Plaintext
Raw Permalink Normal View History

2023-01-24 22:56:39 +00:00
#!/bin/bash
pid="$(xdotool getactivewindow getwindowpid)"
[ -n "$pid" ] && cd "$(readlink -f "/proc/$(pgrep -P "$pid")/cwd")" &>/dev/null || cd "$HOME"
2022-02-26 16:06:53 +00:00
exec st "${SHELL:-bash}"