Como mostrar um ícone no painel se um processo for executado
Com base na (e explicada em) esta resposta , podemos facilmente criar um indicador, que é executado em ambos os Xubuntu
e Unity ou qualquer outro sabor, para mostrar se um processo, um script ou um aplicativo é executado ou não.
é executado:
Oscriptnãoéexecutado:
Noscript(indicador)abaixo,adicioneiumthreadparadetectaroprocessoparaoindicador:
#!/usr/bin/env python3
import subprocess
import os
import time
import signal
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('AppIndicator3', '0.1')
from gi.repository import Gtk, AppIndicator3, GObject
from threading import Thread
# --- set the path to the script below
script = "/path/to/script.sh"
#---
currpath = os.path.dirname(os.path.realpath(__file__))
def runs(script):
# function to check if the process runs
try:
return subprocess.check_output(["pgrep", "-f", script]).decode("utf-8")
except subprocess.CalledProcessError:
pass
class Indicator():
def __init__(self):
self.app = 'show_proc'
iconpath = currpath+"/nocolor.png"
self.indicator = AppIndicator3.Indicator.new(
self.app, iconpath,
AppIndicator3.IndicatorCategory.OTHER)
self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
self.indicator.set_menu(self.create_menu())
self.update = Thread(target=self.check_runs)
# daemonize the thread to make the indicator stopable
self.update.setDaemon(True)
self.update.start()
def check_runs(self):
# the function (thread), checking for the process to run
runs1 = ""
while True:
time.sleep(1)
runs2 = runs(script)
# if there is a change in state, update the icon
if runs1 != runs2:
if runs2:
# set the icon to show
GObject.idle_add(
self.indicator.set_icon,
currpath+"/green.png",
priority=GObject.PRIORITY_DEFAULT
)
else:
# set the icon to hide
GObject.idle_add(
self.indicator.set_icon,
currpath+"/nocolor.png",
priority=GObject.PRIORITY_DEFAULT
)
runs1 = runs2
def create_menu(self):
menu = Gtk.Menu()
# quit
item_quit = Gtk.MenuItem('Quit')
item_quit.connect('activate', self.stop)
menu.append(item_quit)
menu.show_all()
return menu
def stop(self, source):
Gtk.main_quit()
Indicator()
GObject.threads_init()
signal.signal(signal.SIGINT, signal.SIG_DFL)
Gtk.main()
Como usar
- Copie o script abaixo em um arquivo vazio, salve-o como
show_proc.py
-
Na seção principal do script, na linha:
# --- set the path to the script below script = "/path/to/script.sh" #---
defina o caminho para seu script ou aplicativos
-
Copie os dois ícones abaixo (clique com o botão direito - > salve como) e salve-os em um e no mesmo diretório que
show_proc.py
e exatamente como indicado abaixogreen.png
nocolor.png
<-esteéumíconetransparente,masestálá:).movaocursoratéodedoaparecer... Agoratesteexecutar
show_proc.py
pelocomando:python3/path/to/show_proc.py
einicieseuscript
Setudofuncionarbem,adicioneoseguinteaosaplicativossgtartup:
/bin/bash-c"sleep 15 && python3 /path/to/show_proc.py"