我可以设法自动生成两个 xfce4 终端,每个终端有 4 个选项卡。这很好。
但我希望左侧窗口的默认工作目录为 ~/dir1,右侧窗口的默认工作目录为 ~/dir2。我不知道如何指定它。
我使用的命令是
xfce4-terminal --default-working-directory="/home/$USER/dir1" --geometry="134x79+108+62" --tab --tab --tab
但是这个左侧窗口的 4 个选项卡是从我的主目录开始的,而不是 ~/dir1。我应该如何指定它?(我尝试在第一个 --tab 之后给出 --command="cd ~/dir1",但徒劳无功。(ubuntu 16.04)
答案1
也许使用脚本并在其中插入一行带有 CD 的内容?(我只是在这里猜测)
#!/bin/sh
# ... This is a Script, save it with extension .sh
# ... and mark it as executable: chmod +x ./path/script.sh
# ... The advantage of scripts is that you can assign
# ... keyboard hotkeys to initialize them.
YourCommand1
cd /directory/you/want
# ... always empty line at the end
或者也许尝试在cd
命令之前使用。