Para usuários do Xenial, faça isso. Ele funciona muito bem com o terminator até o momento.
Isso será executado / exibido / oculto ao usar o atalho de teclado
Eu tinha F12
mapeado para mostrar / ocultar o Guake há algum tempo, mas queria painéis de terminal.
sudo apt update && sudo apt install xdotool wmctrl
cd ~ && touch terminator_show_hide.sh && sudo chmod +x terminator_show_hide.sh
Cole isso no arquivo:
#!/bin/bash
#
# This script does this:
# launch an app if it isn't launched yet,
# focus the app if it is launched but not focused,
# minimize the app if it is focused.
#
# by desgua - 2012/04/29
# modified by olds22 - 2012/09/16
# - customized to accept a parameter
# - made special exception to get it working with terminator
# First let's check if the needed tools are installed:
tool1=$(which xdotool)
tool2=$(which wmctrl)
if [ -z $tool1 ]; then
echo "Xdotool is needed, do you want to install it now? [Y/n]"
read a
if [[ $a == "Y" || $a == "y" || $a = "" ]]; then
sudo apt-get install xdotool
else
echo "Exiting then..."
exit 1
fi
fi
if [ -z $tool2 ]; then
echo "Wmctrl is needed, do you want to install it now? [Y/n]"
read a
if [[ $a == "Y" || $a == "y" || $a = "" ]]; then
sudo apt-get install wmctrl
else
echo "Exiting then..."
exit 1
fi
fi
# check if we're trying to use an app that needs a special process name
# (because it runs multiple processes and/or under a different name)
app=$1
if [[ $app == terminator ]]; then
process_name=usr/bin/terminator
else
process_name=$app
fi
# Check if the app is running (in this case $process_name)
#pid=$(pidof $process_name) # pidof didn't work for terminator
pid=$(pgrep -f $process_name)
# If it isn't launched, then launch
if [ -z $pid ]; then
$app
else
# If it is launched then check if it is focused
foc=$(xdotool getactivewindow getwindowpid)
if [[ $pid == $foc ]]; then
# if it is focused, then minimize
xdotool getactivewindow windowminimize
else
# if it isn't focused then get focus
wmctrl -x -R $app
fi
fi
exit 0
Em seguida, solte o mapa do Guake, se estiver substituindo o mesmo atalho como eu estava.
Abra a GUI de configurações do sistema - > Teclado - > Atalhos - > Atalhos Personalizados
Clique em + e adicione isto à linha de comando:
/home/you/terminator_show_hide.sh terminator
Em seguida, mapeie a chave e você deve estar pronto.
Esta é uma versão ligeiramente modificada do link
Eu não tinha a pasta bin mencionada e ela não dispararia de home/me/.local/bin
, mas quando eu a movi para /home/me/
, funcionou instantaneamente.
Agora eu tenho o melhor dos dois mundos, Guake Show / Hide & amp; PANAS !!
FYI: Estou colocando esta informação aqui porque encontrei este post na primeira pesquisa. Eu encontrei o outro post depois de cavar um buraco mais largo.