1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-27 21:51:43 +00:00

Use a default terminal emulator

This commit is contained in:
J.Fernando Sánchez 2013-04-04 19:00:57 +02:00
parent c7a322d98d
commit 4c6e834e03

View File

@ -1,20 +1,21 @@
#!/bin/bash #!/bin/bash
if [ "x$1" != "x" ] TERMINAL_EMULATOR='xfce4-terminal'
then
tab=1 tab=1
pgrep -l -u "$USER" -f "$1" | egrep -v "/bin/zsh|/bin/bash|/bin/sh" | grep -vq "$$" pgrep -l -u "$USER" -f "$TERMINAL_EMULATOR" | egrep -v "/bin/zsh|/bin/bash|/bin/sh" | grep -vq "$$"
if [ $? != "0" ] if [ $? != "0" ]
then then
/usr/bin/$1 & /usr/bin/$TERMINAL_EMULATOR &
sleep 1 sleep 1
tab=0 tab=0
fi fi
echo "Bring it on" >> /tmp/prueba.log WID=`xdotool search --class $TERMINAL_EMULATOR | tail -1`
WID=`xdotool search --class $1 | tail -1`
wmctrl -i -a $WID wmctrl -i -a $WID
if [ "x$2" != "x" ] if [ "x$1" != "x" ]
then then
shift if [ "x$1" == "xhelp" ]
then
echo "Usage: $0 [command-in-new-window]"
else
if [ $tab == 1 ] if [ $tab == 1 ]
then then
eval "tmux neww" eval "tmux neww"
@ -23,6 +24,4 @@ then
xdotool type "$*" xdotool type "$*"
xdotool key Return xdotool key Return
fi fi
else
echo "Usage: $0 <terminal-emulator> [extra action]"
fi fi