是否有时间跟踪窗口和应用程序使用的软件?

是否有一个软件可以保留我的活动时间并提供报告? 基于重点窗口和窗口标题。 报告只显示特定窗口及其标题所花费的时间,如:

Application Title Time Firefox Ask Ubuntu - Mozilla Firefox 5:58 


编辑:可以在此处找到带有已排序报告的脚本版本


为它编写脚本总是很有趣!

下面的脚本将生成一个输出(报告),如:

 ------------------------------------------------------------ nautilus 0:00:05 (3%) ------------------------------------------------------------ 0:00:05 (3%) .usagelogs ------------------------------------------------------------ firefox 0:01:10 (36%) ------------------------------------------------------------ 0:00:05 (3%) The Asker or the Answerer? - Ask Ubuntu Meta - Mozilla Firefox 0:00:15 (8%) scripts - Is there software which time- tracks window & application usage? - Ask Ubuntu - Mozilla Firefox 0:00:10 (5%) Ask Ubuntu - Mozilla Firefox 0:00:15 (8%) Why is a one line non-understandable answer used as review audit? - Ask Ubuntu Meta - Mozilla Firefox 0:00:20 (10%) bash - How to detect the number of opened terminals by the user - Ask Ubuntu - Mozilla Firefox 0:00:05 (3%) BlueGriffon - Mozilla Firefox ------------------------------------------------------------ gedit 0:02:00 (62%) ------------------------------------------------------------ 0:02:00 (62%) 2016_06_04_10_33_29.txt (~/.usagelogs) - gedit ============================================================ started: 2016-06-04 10:33:29 updated: 2016-06-04 10:36:46 ============================================================ 

..每分钟更新一次。

笔记

  • 该报告可能会报告类别下的窗口:“未知”。 当窗口具有pid 0tkinter窗口,例如Idle窗口, Python IDE)时就是这种情况。 然而,他们的窗口标题和用法将被正确报告。

  • 具有密码输入的锁定屏幕被报告为“nux输入窗口”。

  • 百分比是舍入百分比,这可能偶尔会导致应用程序百分比与窗口百分比之和之间的微小差异。

    例如:如果一个应用程序有两个窗口,每个窗口占总时间的0,7% ,两个窗口每个报告1%0.7 – >舍入为1 ),而应用程序的使用率报告1%1.4 – >四舍五入到1

    无需说这些差异在整个情况下完全无关紧要。

剧本

 #!/usr/bin/env python3 import subprocess import time import os # -- set update/round time (seconds) period = 5 # -- # don change anything below home = os.environ["HOME"] logdir = home+"/.usagelogs" def currtime(tformat=None): return time.strftime("%Y_%m_%d_%H_%M_%S") if tformat == "file"\ else time.strftime("%Y-%m-%d %H:%M:%S") try: os.mkdir(logdir) except FileExistsError: pass # path to your logfile log = logdir+"/"+currtime("file")+".txt"; startt = currtime() def get(command): try: return subprocess.check_output(command).decode("utf-8").strip() except subprocess.CalledProcessError: pass def time_format(s): # convert time format from seconds to h:m:s m, s = divmod(s, 60); h, m = divmod(m, 60) return "%d:%02d:%02d" % (h, m, s) def summarize(): with open(log, "wt" ) as report: totaltime = sum([it[2] for it in winlist]) report.write("") for app in applist: wins = [r for r in winlist if r[0] == app] apptime = sum([it[2] for it in winlist if it[0] == app]) appperc = round(100*apptime/totaltime) report.write(("-"*60)+"\n"+app+"\n"+time_format(apptime)+\ " ("+str(appperc)+"%)\n"+("-"*60)+"\n") for w in wins: wperc = str(round(100*w[2]/totaltime)) report.write(" "+time_format(w[2])+" ("+\ wperc+"%)"+(6-len(wperc))*" "+w[1]+"\n") report.write("\n"+"="*60+"\nstarted: "+startt+"\t"+\ "updated: "+currtime()+"\n"+"="*60) t = 0; applist = []; winlist = [] while True: time.sleep(period) frpid = get(["xdotool", "getactivewindow", "getwindowpid"]) frname = get(["xdotool", "getactivewindow", "getwindowname"]) app = get(["ps", "-p", frpid, "-o", "comm="]) if frpid != None else "Unknown" # fix a few names if "gnome-terminal" in app: app = "gnome-terminal" elif app == "soffice.bin": app = "libreoffice" # add app to list if not app in applist: applist.append(app) checklist = [item[1] for item in winlist] if not frname in checklist: winlist.append([app, frname, 1*period]) else: winlist[checklist.index(frname)][ 2] = winlist[checklist.index(frname)][2]+1*period if t == 60/period: summarize() t = 0 else: t += 1 

如何设置

  1. 该脚本需要xdotool来获取窗口的信息

     sudo apt-get install xdotool 
  2. 将脚本复制到空文件中,将其另存为window_logs.py

  3. 测试运行脚本:通过命令(从终端)调整脚本:

     python3 /path/to/window_logs.py 

    一分钟后,脚本会创建一个日志文件,其中第一个结果为~/.usagelogs 。 该文件带有创建日期和时间的时间戳。 该文件每分钟更新一次。

    在文件的底部,您可以看到最新编辑的开始时间和时间戳。 这样您就可以随时查看文件的时间跨度。

    如果脚本重新启动,则会创建一个带有新(开始)时间戳的新文件。

  4. 如果一切正常,请添加到启动应用程序:Dash>启动应用程序>添加。 添加命令:

     /bin/bash -c "sleep 15 && python3 /path/to/window_logs.py" 

更多笔记

  • ~/.uselogs默认是一个隐藏目录。 按(在nautilus按Ctrl + H使其可见。
  • 实际上,脚本会在5秒钟内对窗口的活动性进行舍入,假设不到5秒钟就没有真正使用窗口。 如果您想更改该值,请将其设置在行中脚本的开头:

     # -- set update/round time (seconds) period = 5 # -- 
  • 该剧本非常“低效”。 此外,由于每个窗口的时间更新是在脚本内完成的,因此日志文件中的行数限制为实际使用的窗口数。

    不过,我不会连续几周运行脚本,例如,以防止累积太多行(=窗口记录)来维护。

arbtt完全符合您的描述: https : arbtt