Guake终端启动shell脚本

时间:2014-11-24 15:00:55

标签: shell terminal

我正在尝试创建一个启动脚本,在Guake中打开两个选项卡,执行命令,然后重命名选项卡。不幸的是,标签没有被重命名。同时也很烦人,它打开了shell脚本目录中的终端,而不是默认的〜/目录。阅读完帮助文件后,我非常确定该脚本是正确的。

帮助文件:

Options:
  -h, --help            show this help message and exit
  -f, --fullscreen      Put Guake in fullscreen mode
  -t, --toggle-visibility
                        Toggles the visibility of the terminal window
  -p, --preferences     Shows Guake preference window
  -a, --about           Shows Guake's about info
  -n NEW_TAB, --new-tab=NEW_TAB
                        Add a new tab
  -s SELECT_TAB, --select-tab=SELECT_TAB
                        Select a tab
  -g, --selected-tab    Return the selectd tab index.
  -e COMMAND, --execute-command=COMMAND
                        Execute an arbitrary command in the selected tab.
  -r RENAME_TAB, --rename-tab=RENAME_TAB
                        Rename the selected tab.
  -q, --quit            Says to Guake go away =(

这是我的shell脚本:

#!/bin/sh
# guakeStartup.sh

# open tabs
guake -e "irssi" -r "irssi"
guake -n -e "cd" -r "terminal"

1 个答案:

答案 0 :(得分:4)

在启动脚本中尝试这样:

guake --rename-tab="irssi" --execute-command="irssi" &
sleep 1 &&
guake --new-tab=2 --rename-tab="terminal" --execute-command="cd" &

或者更像你的原作:

guake -e "irssi" -r "irssi" &
sleep 1 &&
guake -n=2 -e "cd" -r "terminal" &