mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-21 19:52:29 +00:00
Added script to exec commands in a new tmux window
This commit is contained in:
parent
3e52be8bec
commit
c7a322d98d
@ -4,7 +4,6 @@ then
|
|||||||
pgrep -l -u "$USER" -f "$1" | egrep -v "/bin/bash|/bin/sh" | grep -vq "$$"
|
pgrep -l -u "$USER" -f "$1" | egrep -v "/bin/bash|/bin/sh" | grep -vq "$$"
|
||||||
if [ $? == "0" ]
|
if [ $? == "0" ]
|
||||||
then
|
then
|
||||||
ps aux | grep terminator > /home/balkian/LOG
|
|
||||||
WID=`xdotool search --class $1 | head -1`
|
WID=`xdotool search --class $1 | head -1`
|
||||||
wmctrl -i -a $WID
|
wmctrl -i -a $WID
|
||||||
if [ "x$2" != "x" ]
|
if [ "x$2" != "x" ]
|
||||||
|
28
one-tmux
Executable file
28
one-tmux
Executable file
@ -0,0 +1,28 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
if [ "x$1" != "x" ]
|
||||||
|
then
|
||||||
|
tab=1
|
||||||
|
pgrep -l -u "$USER" -f "$1" | egrep -v "/bin/zsh|/bin/bash|/bin/sh" | grep -vq "$$"
|
||||||
|
if [ $? != "0" ]
|
||||||
|
then
|
||||||
|
/usr/bin/$1 &
|
||||||
|
sleep 1
|
||||||
|
tab=0
|
||||||
|
fi
|
||||||
|
echo "Bring it on" >> /tmp/prueba.log
|
||||||
|
WID=`xdotool search --class $1 | tail -1`
|
||||||
|
wmctrl -i -a $WID
|
||||||
|
if [ "x$2" != "x" ]
|
||||||
|
then
|
||||||
|
shift
|
||||||
|
if [ $tab == 1 ]
|
||||||
|
then
|
||||||
|
eval "tmux neww"
|
||||||
|
sleep 0.2
|
||||||
|
fi
|
||||||
|
xdotool type "$*"
|
||||||
|
xdotool key Return
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Usage: $0 <terminal-emulator> [extra action]"
|
||||||
|
fi
|
25
one-window
25
one-window
@ -1,25 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
if [ "x$1" != "x" ]
|
|
||||||
then
|
|
||||||
WID=`xdotool search --class $1 | head -1`
|
|
||||||
if [ "s$WID" != "s" ]
|
|
||||||
then
|
|
||||||
ps aux | grep terminator > /home/balkian/LOG
|
|
||||||
|
|
||||||
wmctrl -i -a $WID
|
|
||||||
if [ "x$2" != "x" ]
|
|
||||||
then
|
|
||||||
eval "$2"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
if [ "x$3" == "x" ]
|
|
||||||
then
|
|
||||||
/usr/bin/$1
|
|
||||||
else
|
|
||||||
eval "$3"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "Usage: one-instance program-name [extra action]"
|
|
||||||
fi
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user