Last active
June 21, 2021 07:42
-
-
Save pa4080/4e498881035e2b5062278b8c52252dc1 to your computer and use it in GitHub Desktop.
A script that puts time indicator monitor in Ubuntu 16.04 task bar. Source: https://askubuntu.com/a/1040356/566421
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# References: https://askubuntu.com/a/1040356/566421 | |
# https://gist.github.com/pa4080/4e498881035e2b5062278b8c52252dc1 | |
import signal | |
import gi | |
import os | |
import subprocess | |
import sys | |
gi.require_version('Gtk', '3.0') | |
gi.require_version('AppIndicator3', '0.1') | |
from gi.repository import Gtk, AppIndicator3, GObject | |
import time | |
from threading import Thread | |
# Execute the script | |
script = os.path.basename(sys.argv[1]) | |
subprocess.Popen(sys.argv[1:]) | |
script_name = script.rsplit('/', 1)[-1] | |
class Indicator(): | |
def __init__(self): | |
self.app = 'Script indicator' | |
iconpath = "/usr/share/unity/icons/launcher_bfb.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.indicator.set_label("Script Indicator", self.app) | |
# the thread: | |
self.update = Thread(target=self.show_seconds) | |
# daemonize the thread to make the indicator stopable | |
self.update.setDaemon(True) | |
self.update.start() | |
def create_menu(self): | |
menu = Gtk.Menu() | |
# menu item 1 | |
item_quit = Gtk.MenuItem('Quit') | |
item_quit.connect('activate', self.stop) | |
menu.append(item_quit) | |
menu.show_all() | |
return menu | |
def show_seconds(self): | |
global script_name | |
t = 0 | |
process = subprocess.call(['pgrep', script_name], stdout=subprocess.PIPE) | |
while (process == 0): | |
t += 1 | |
GObject.idle_add( | |
self.indicator.set_label, | |
script_name + ' ' + str(t) + 's', self.app, | |
priority=GObject.PRIORITY_DEFAULT | |
) | |
time.sleep(1) | |
process = subprocess.call(['pgrep', script_name], stdout=subprocess.PIPE) | |
subprocess.call(['notify-send', script_name + ' ended in ' + str(t) + 's']) | |
time.sleep(10) | |
Gtk.main_quit() | |
def stop(self, source): | |
global script_name | |
subprocess.call(['pkill', script_name], stdout=subprocess.PIPE) | |
Gtk.main_quit() | |
Indicator() | |
# this is where we call GObject.threads_init() | |
GObject.threads_init() | |
signal.signal(signal.SIGINT, signal.SIG_DFL) | |
Gtk.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Download it in
/usr/local/bin
asscript-indicator
and make it executable:Then, depending on your needs and your script nature use the command
script-indicator
in one of the following ways:More details are provided here: https://askubuntu.com/a/1040356/566421