Comando para ativar (execute ou traga para frente se já estiver rodando) um programa

6

Eu quero ter um atalho de teclado para iniciar ou trazer para a frente um programa. (sqldeveloper se isso importa)

Eu sei como executá-lo, isso deixa:

1) como descubro se um programa já está em execução?

2) como eu trago o programa a outra parte superior de outras janelas abertas?

~~ edit ~~

Obrigado pelas respostas até agora. Quando executo um desses comandos para obter a lista de processos em execução, recebo o seguinte:

doneill   3492     1  0 Nov16 ?        00:00:00 /bin/sh /usr/local/bin/sqldeveloper
doneill   3493  3492  0 Nov16 ?        00:00:00 /bin/bash /opt/sqldeveloper/sqldeveloper.sh
doneill   3495  3493  0 Nov16 ?        00:00:00 bash sqldeveloper
doneill   3552  3495  1 Nov16 ?        00:25:07 /usr/lib/jvm/java-6-sun-1.6.0.22/bin/java -Xmx640M -Xms128M -Xverify:none -Doracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG=true -Dsun.java2d.ddoffscreen=false -Dwindows.shell.font.languages= -XX:MaxPermSize=128M -Dide.AssertTracingDisabled=true -Doracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG=true -Djava.util.logging.config.file=logging.conf -Dsqldev.debug=false -Dide.conf="/opt/sqldeveloper/sqldeveloper/bin/sqldeveloper.conf" -Dide.startingcwd="/opt/sqldeveloper/sqldeveloper/bin" -classpath ../../ide/lib/ide-boot.jar oracle.ide.boot.Launcher

Eu o inicio através do script .sh. É um programa baseado em java. Qual desses é o que eu estaria interessado? Eu tentei usar o xdotool para aumentá-lo, eu ainda não fui bem-sucedido, embora não tenha tempo hoje para vasculhar as páginas do manual.

Se eu executar xdotool search Orac ('Oracle SQL Developer' é o início do título da janela), ele retorna um monte de números. Um deles representa o que me interessa?

    
por David Oneill 17.11.2010 / 01:21

3 respostas

5

Um pouco de bash e xdotool devem resolver o problema. Notas sobre a instalação do xdotool no final do post.

ActivateOrLaunch.sh

#!/usr/bin/env bash

# usage:
#    ActivateOrLaunch.sh firefox-bin
#
# Will launch firefox-bin or activate the first window in the windows stack
# --- Remember to chmod a+x ActivateOrLaunch.sh in order to execute.

# pgrep looks through the currently running processes and lists the process
#       IDs which matches the selection criteria to stdout
#       for more information on pgrep http://linux.die.net/man/1/pgrep

# if process is found by pgrep then pipe through head to get firt instance in
#    case of multiple processes running. If process not found $pid will be empty
pid=$(pgrep ${1} | head -n 1)

# Using "-z" check if $pid is empty, if so execute the process
if [ -z "$pid" ]; then
   echo "$1 not running... executing..."
   $1 &
else
   # process was found, find the first visible window and activate it
   echo "Found process $1 with PID $pid"

   # using xdotool [http://www.semicomplete.com/projects/xdotool/] get the first
   # visible windows using $pid. Redirect stderr to /dev/null and only select
   # the first visible windows using head
   wid=$(xdotool search --onlyvisible --pid $pid 2>/dev/null | head -n 1)

   # if $wid is empty the process does not have any visible windows... do nothing
   if [ -z "$wid" ]; then
     echo "Didn't find any visible windows for process $1 with PID: $pid"
   else
     # send the window id ($wid) from the window stack to xdotool
     echo "Activating first windows in stack"
     xdotool windowactivate $wid
   fi
fi

# ******** NOTES **********
# In order for this script to work correctly you need to pass the complete process 
# name for it to find any visible windows. The process needs needs to be in the path
# for it to execute if not running.
#
# For example
#
# If you try it with firefox-bin on Ubuntu 10.10 it will find the running process and 
# activate the window, but it will not be able to launch the process since the executable 
# in the path is called firefox which is a link to firefox.sh
# (/usr/bin/firefox -> ../lib/firefox-3.6.12/firefox.sh) which in turn executes firefox-bin
# (not in path).
#
# Next, if you use firefox it will find a process but won't be able to find any windows 
# since it's a wrapper function calling firefox-bin and doesn't have any windows. 

Você pode encontrar o código em github

Eu testei o código no Ubuntu 10.10 (Gnome) e funcionou. Ele precisa de um pouco de polimento, já que eu simplesmente digitei e não me preocupei em deixar isso bonito (queria ter certeza de colocar os comentários)

Para instalar o xdotool você pode apt-get instalar o xdotool (form me this fetched version 2.20100701.2691), se você quiser o mais recente e melhor obtê-lo de here (a partir de 20101116 é como versão 2.20101012.3049-4)

    
por SiliconChaos 17.11.2010 / 03:16
2

Crie um arquivo no seu diretório pessoal chamado sql-raise.sh

#!/bin/sh
if ps -ef | grep process-name | grep -v grep ; then
    #The process is running, bring it to the front
    xdotool search --name process-name windowraise
    exit 0
fi

#The process is not running, start it
process-name

A linha que inicia if ps -ef... é traduzida como:

  • Listar todos os processos em execução
  • Filtre as linhas que não contiverem process-name
  • Filtre o comando grep , para evitar falsos positivos

A linha que inicia xdotool é a que leva o processo para a frente.

Em uma linha de comando, execute chmod +x ~/sql-raise.sh para tornar o arquivo executável.

Para vincular isso a uma chave, use o sistema - > Preferências - > Atalhos de Teclado

    
por Jeremy 17.11.2010 / 01:34
2

'launchorsitch.sh firefox' inicia o firefox se ele não estiver em execução, alterna para ele, se não estiver ativo, ou minimiza se for a janela ativa.

#!/bin/bash
# usage: "launchorswitch.sh xterm" to change to/start/hide xterm
app=$1
app_win_id='wmctrl -lx|grep -i $app|cut -d ' ' -f 1'
case $app in
    terminator)
        app_exec="terminator --geometry=1000x720+140+28"
    ;;
    *)
        app_exec=$app
    ;;
esac
if [ -z $app_win_id ]; then
    $app_exec & # app not started, so start it
else

    active_win_id='wmctrl -r :ACTIVE: -e 0,-1,-1,-1,-1 -v 2>&1|grep U|cut -d ' ' -f 3'
    if [ $app_win_id == $active_win_id ]; then
        wmctrl -r :ACTIVE: -b toggle,hidden    # hide app when active
    else
        wmctrl -i -a $app_win_id    #switch to app
    fi;
fi;

No começo existem regras especiais para programas (aqui é o terminator). Meu hack usa wmctrl e permite especificar regras especiais para o executável a ser procurado / executado. Quaisquer comentários sobre estilo, erros óbvios, etc. bem-vindos.

    
por turbo 17.11.2010 / 16:00