สคริปต์ด้านล่างจะสลับการกระทำที่ปิดฝาระหว่าง "ไม่มีอะไร" และ "ระงับ":
#!/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])
... และแจ้งให้ทราบว่าสถานะที่ตั้งไว้ในปัจจุบันคืออะไร:
วิธีใช้
เพียง:
คำอธิบาย
สถานะปัจจุบันของการตั้งค่าการดำเนินการปิดฝาสามารถเรียกดูได้โดยคำสั่ง
gsettings get org.gnome.settings-daemon.plugins.power lid-close-ac-action
(เปิดเครื่อง) และ
gsettings get org.gnome.settings-daemon.plugins.power lid-close-battery-action
(แบตเตอรี่)
สคริปต์อ่านสถานะปัจจุบันและตั้งค่าตรงกันข้าม ('suspend' / 'nothing') ด้วยคำสั่ง:
gsettings get org.gnome.settings-daemon.plugins.power lid-close-ac-action '<action>'
เลือกได้ (เพิ่มเติม)
เป็นทางเลือก / นอกจากนี้คุณสามารถเรียกใช้ตัวบ่งชี้เป็นเครื่องตรวจจับเพื่อแสดงสถานะปัจจุบันของการตั้งค่าฝา มันจะแสดง:
... ในแผงควบคุมหากมีการป้องกันการระงับชั่วคราวในการปิดฝามันจะแสดงสีเทาถ้าไม่
บท
#!/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()
วิธีใช้
- คัดลอกสคริปต์ด้านบนลงในไฟล์เปล่าแล้วบันทึกเป็น
show_state.py
คัดลอกไอคอนทั้งสองด้านล่าง (คลิกขวา -> บันทึกเป็น) และบันทึกในหนึ่งและไดเรกทอรีเดียวกันshow_proc.py
และมีชื่อตรงตามที่ระบุไว้ด้านล่าง
green.png
nocolor.png
ตอนนี้ทำการทดสอบshow_state.py
โดยคำสั่ง:
python3 /path/to/show_state.py
และเปลี่ยนสถานะปัจจุบันโดยกดทางลัดที่คุณตั้งค่าส่วนแรกของคำตอบนี้
หากทำงานได้ดีให้เพิ่มรายการต่อไปนี้ในแอปพลิเคชันเริ่มต้น:
/bin/bash -c "sleep 15 && python3 /path/to/show_state.py"
บันทึก
ตัวตรวจจับ - ตัวบ่งชี้ด้านบนเป็นคำตอบที่ถูกแก้ไขแล้ว เพียงโดยการเปลี่ยนการทดสอบในการทำงานruns()
(และเลือกตามไอคอนแผง), คุณสามารถใช้มันเพื่อแสดงสถานะของอะไรที่เป็นหรือTrue
False