Script aşağıda olacak geçiş "hiçbir şey" ve "askıya alma" arasındaki yakın-kapak eylemi:
#!/usr/bin/env python3
import subprocess
key = ["org.gnome.settings-daemon.plugins.power",
"lid-close-ac-action", "lid-close-battery-action"]
currstate = subprocess.check_output(["gsettings", "get",
key[0], key[1]]).decode("utf-8").strip()
if currstate == "'suspend'":
command = "'nothing'"
subprocess.Popen(["notify-send", "Lid closes with no action"])
else:
command = "'suspend'"
subprocess.Popen(["notify-send", "Suspend will be activated when lid closes"])
for k in [key[1], key[2]]:
subprocess.Popen(["gsettings", "set", key[0], k, command])
... Ve şu anda ayarlanmış durumun ne olduğunu bildir:
Nasıl kullanılır
basitçe:
açıklama
Kapalı kapak eylem ayarının geçerli durumu komut (lar) tarafından alınabilir
gsettings get org.gnome.settings-daemon.plugins.power lid-close-ac-action
(güçte) ve
gsettings get org.gnome.settings-daemon.plugins.power lid-close-battery-action
(pilde)
Komut dosyası geçerli durumu okur ve komutla tersini ('askıya alma' / 'hiçbir şey') ayarlar:
gsettings get org.gnome.settings-daemon.plugins.power lid-close-ac-action '<action>'
İsteğe bağlı olarak (ayrıca)
İsteğe bağlı olarak / ek olarak, kapak ayarının mevcut durumunun ne olduğunu göstermek için bir gösterge dedektör olarak çalıştırabilirsiniz. Gösterecektir:
... panelde, kapak kapatılırken askıya alınma engellenirse, gri renkte görünmez.
Senaryo
#!/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
key = ["org.gnome.settings-daemon.plugins.power",
"lid-close-ac-action", "lid-close-battery-action"]
currpath = os.path.dirname(os.path.realpath(__file__))
def runs():
# The test True/False
return subprocess.check_output([
"gsettings", "get", key[0], key[1]
]).decode("utf-8").strip() == "'suspend'"
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 = None
while True:
time.sleep(1)
runs2 = runs()
# 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+"/nocolor.png",
priority=GObject.PRIORITY_DEFAULT
)
else:
# set the icon to hide
GObject.idle_add(
self.indicator.set_icon,
currpath+"/green.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()
Nasıl kullanılır
- Yukarıdaki komut dosyasını boş bir dosyaya kopyalayın,
show_state.py
Aşağıdaki her iki simgeyi de kopyalayın (sağ tıklayın -> farklı kaydet) ve bunları bir ve aynı dizine kaydedin ve tam olarak aşağıda belirtildiği şekilde adlandırınshow_proc.py
green.png
nocolor.png
Şimdi show_state.py
komut ile test edin:
python3 /path/to/show_state.py
ve bu cevabın ilk bölümünü ayarladığınız kısayola basarak geçerli durumu değiştirin.
Her şey yolunda giderse, başlangıç uygulamalarına aşağıdakileri ekleyin:
/bin/bash -c "sleep 15 && python3 /path/to/show_state.py"
Not
Yukarıdaki dedektör göstergesi bu cevabın düzenlenmiş bir versiyonudur . Basitçe işlevinde testi değiştirerek runs()
(ve isteğe bağlı uygun panel simgeler), sen durumunu göstermek için kullanabilirsiniz şey olduğunu True
ya False
.