私の活動の時間を記録し、レポートを提供するソフトウェアはありますか?
フォーカスされたウィンドウとウィンドウのタイトルに基づいています。
レポートには、特定のウィンドウとそのタイトルに費やされた時間が次のように表示されます。
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
============================================================
..これは1分に1回更新されます。
メモ
-
レポートは、「不明」というカテゴリのウィンドウを報告する可能性があります。これは、ウィンドウに
pid 0
がある場合です。 (tkinter
Idle
などのウィンドウ ウィンドウ、Python
IDE)。ただし、ウィンドウのタイトルと使用状況は正しく報告されます。 -
パスワード入力のあるロック画面は「nux入力ウィンドウ」として報告されます。
-
パーセンテージは丸められます パーセンテージ。これにより、アプリケーション間でわずかな違いが生じる場合があります。 パーセンテージとそのウィンドウのパーセンテージの合計。
例:アプリケーションで2つのウィンドウが使用され、それぞれが
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
設定方法
-
スクリプトには
xdotool
が必要です ウィンドウの情報を取得するにはsudo apt-get install xdotool
-
スクリプトを空のファイルにコピーし、
window_logs.py
として保存します -
スクリプトをテスト実行します:コマンド(ターミナルから)でスクリプトをタルトします:
python3 /path/to/window_logs.py
1分後、スクリプトはログファイルを作成します。最初の結果は
~/.usagelogs
になります。 。ファイルには、作成日時がタイムスタンプされています。ファイルは1分に1回更新されます。ファイルの下部に、最新の編集の開始時刻とタイムスタンプの両方が表示されます。このようにして、ファイルの期間をいつでも確認できます。
スクリプトが再起動すると、新しい(start-)タイムスタンプを持つ新しいファイルが作成されます。
-
すべてが正常に機能する場合は、スタートアップアプリケーションに追加します:ダッシュ>スタートアップアプリケーション>追加。コマンドを追加します:
/bin/bash -c "sleep 15 && python3 /path/to/window_logs.py"
その他のメモ
-
~/.uselogs
デフォルトでは隠しディレクトリです。 (nautilus
で ) Ctrl + H 見えるようにします。 -
現状では、スクリプトは5秒未満で実際にウィンドウを使用していないと仮定して、ウィンドウのアクティブ性を5秒で丸めます。値を変更する場合は、次の行のスクリプトの先頭に設定します。
# -- set update/round time (seconds) period = 5 # --
-
スクリプトは非常に「ジュースが少ない」です。さらに、時間更新以降、ウィンドウごと スクリプト内で実行される場合、ログファイルの行数は実際に使用されているウィンドウの数に制限されます。
それでも、たとえば、維持するのに多すぎる行(=ウィンドウレコード)が蓄積されるのを防ぐために、スクリプトを数週間続けて実行することはしませんでした。