如何知道我的计算机有多长时间没有通过 GUI 使用过?

如何知道我的计算机有多长时间没有通过 GUI 使用过?

我如何才能知道我的电脑有多长时间没有通过鼠标或键盘进行输入?

答案1

如何查看空闲时间;计算机没有鼠标或键盘输入的时间

  • 要查看空闲时间,您需要打印空闲

    sudo apt-get install xprintidle
    
  • 为了演示该xprintidle操作,请运行:

    sleep 5 && xprintidle
    

    在此处输入图片描述

    ...显示空闲时间毫秒

  • 如果您想持续在终端中显示空闲时间:

    while true; do xprintidle && sleep 1; done
    

    在此处输入图片描述

当然,xprintidle可以在脚本中使用它来提供更优雅的方式来关注空闲时间,但基本上就是这样。

只是为了好玩

...由于我们现在做任何事情都使用指标,因此举一个如何在 GUI 中显示空闲时间的示例,使用xprintidle

在此处输入图片描述

#!/usr/bin/env python3
import signal
import gi
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
import os
import subprocess

currpath = os.path.dirname(os.path.realpath(__file__))

class Indicator():
    def __init__(self):
        self.app = 'show_idlet'
        iconpath = os.path.join(currpath, "idle.png")
        self.indicator = AppIndicator3.Indicator.new(
            self.app, iconpath,
            AppIndicator3.IndicatorCategory.OTHER)
        self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)       
        self.indicator.set_menu(self.set_menu())
        self.timer = Thread(target=self.check_recent)
        self.timer.setDaemon(True)
        self.timer.start()

    def set_menu(self):
        # quit
        menu = Gtk.Menu()
        item_quit = Gtk.MenuItem('Quit')
        item_quit.connect('activate', self.stop)
        menu.append(item_quit)
        menu.show_all()
        return menu

    def showtime(self, section):
        return (2-len(str(section)))*"0"+str(section)

    def convert_time(self, time):
        hrs = self.showtime(str(int(time/3600)))
        mins = self.showtime(str(int((time%3600)/60)))
        secs = self.showtime(str(time%60))
        return hrs+":"+mins+":"+secs

    def check_recent(self):
        while True:
            time.sleep(1)
            idle = round(int(subprocess.check_output(
                ["xprintidle"]).decode("utf-8").strip())/1000)
            GObject.idle_add(
                self.indicator.set_label,
                self.convert_time(idle), self.app,
                priority=GObject.PRIORITY_DEFAULT
                )

    def stop(self, source):
        Gtk.main_quit()

Indicator()
GObject.threads_init()
signal.signal(signal.SIGINT, signal.SIG_DFL)
Gtk.main()

如何使用

  1. 安装xprintidle

    sudo apt-get install xprintidle
    
  2. 将上述脚本复制到一个空文件中,另存为show_idle.py

  3. 复制下面的图标(右键点击>另存为),另存为(准确命名)idle.png:,与脚本位于同一目录中

    在此处输入图片描述

  4. 从终端运行指标:

    python3 /path/to/show_idle.py
    
  5. 如果需要,您可以将其添加到启动应用程序中:选择 Dash > 启动应用程序 > 添加。添加命令:

    /bin/bash -c "sleep 10 && python3 /path/to/show_idle.py"
    

相关内容