I am trying to set it up so in Thunar when I use open Directory Here, xterm is the terminal emulator used.
I have tried 2 things:
xterm -hold -e "cd '{pwd}'"
and
xterm -hold -e "cd %f"
the %f coming from the help box on the page:
%f - the path to the first selected file
I either need to find a way to escape the %f so it is not interpreted literally("cd \%f" did not work) or have pwd execute in the first option.
I've also tried the following none of which worked:
xterm -hold -e "cd (pwd)"
term -hold -e "cd $(pwd)"