2014-04-10 20:40:52 +02:00
|
|
|
# termcmd should be set such as the next argument is the whole
|
|
|
|
# command line to execute
|
2013-03-03 17:25:40 +01:00
|
|
|
decl str termcmd %sh{
|
2015-11-06 08:14:50 +01:00
|
|
|
for termcmd in 'termite -e ' \
|
|
|
|
'urxvt -e sh -c' \
|
|
|
|
'rxvt -e sh -c' \
|
|
|
|
'xterm -e sh -c' \
|
|
|
|
'roxterm -e sh -c' \
|
|
|
|
'mintty -e sh -c' \
|
2015-11-17 14:40:28 +01:00
|
|
|
'sakura -e ' \
|
2015-11-06 08:14:50 +01:00
|
|
|
'gnome-terminal -e ' \
|
|
|
|
'xfce4-terminal -e ' ; do
|
|
|
|
terminal=${termcmd%% *}
|
|
|
|
if which $terminal > /dev/null 2>&1; then
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "'$termcmd'"
|
2015-11-06 08:14:50 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
done
|
2012-12-26 17:52:17 +01:00
|
|
|
}
|
|
|
|
|
2014-04-07 22:28:40 +02:00
|
|
|
def -docstring 'create a new kak client for current session' \
|
2015-12-01 15:00:55 +01:00
|
|
|
-params .. \
|
2015-06-26 14:52:01 +02:00
|
|
|
-command-completion \
|
2015-11-17 23:25:33 +01:00
|
|
|
x11-new %{ %sh{
|
2015-11-06 08:14:50 +01:00
|
|
|
if [ -z "${kak_opt_termcmd}" ]; then
|
2016-04-23 07:47:01 +02:00
|
|
|
echo "echo -color Error 'termcmd option is not set'"
|
2015-11-06 08:14:50 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
if [ $# -ne 0 ]; then kakoune_params="-e '$@'"; fi
|
|
|
|
setsid ${kak_opt_termcmd} "kak -c ${kak_session} ${kakoune_params}" < /dev/null > /dev/null 2>&1 &
|
2012-12-26 17:52:17 +01:00
|
|
|
}}
|
2014-04-07 22:28:40 +02:00
|
|
|
|
2015-11-17 23:25:33 +01:00
|
|
|
def -docstring 'focus given client\'s window' \
|
2015-12-01 15:00:55 +01:00
|
|
|
-params 0..1 -client-completion \
|
2015-11-17 23:25:33 +01:00
|
|
|
x11-focus %{ %sh{
|
|
|
|
if [ $# -gt 1 ]; then
|
2016-04-23 07:47:01 +02:00
|
|
|
echo "echo -color Error 'too many arguments, use focus [client]'"
|
2015-11-17 23:25:33 +01:00
|
|
|
elif [ $# -eq 1 ]; then
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "eval -client '$1' focus"
|
2015-11-17 23:25:33 +01:00
|
|
|
else
|
|
|
|
xdotool windowactivate $kak_client_env_WINDOWID > /dev/null
|
|
|
|
fi
|
2014-04-07 22:28:40 +02:00
|
|
|
} }
|
2015-11-17 23:25:33 +01:00
|
|
|
|
|
|
|
alias global focus x11-focus
|
|
|
|
alias global new x11-new
|