Last active
November 2, 2020 01:35
-
-
Save evaristocosta/a84d5e436ac58209549381d304bfbe06 to your computer and use it in GitHub Desktop.
Arquivo de categorização pra uso do timetracker arbtt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- -*- mode: haskell; -*- | |
$idle > 60 ==> tag inactive, | |
current window $program == ["urxvt", "Konsole", "terminator"] ==> tag Graph:term, | |
current window $title =~ /\.py/ ==> tag Graph:code-python, | |
current window $title =~ /\.hs/ ==> tag Graph:code-haskell, | |
current window $title =~ /\.rb/ ==> tag Graph:code-ruby, | |
current window $title =~ /\.dart/ ==> tag Graph:code-flutter, | |
current window $title =~ /\.js|\.html|\.css|\.scss|\.jsx|\.tsx/ ==> tag Graph:code-web, | |
current window $title =~ /\.org|\.md|\.tex|\.txt/ ==> tag Graph:write, | |
current window $title =~ [/.*MATLAB.*/, /.*Figure.*/] ==> tag Graph:code-matlab, | |
current window $program == ["sublime_text", "code"] ==> tag Graph:code, | |
current window $title =~ /Gmail|mutt/ ==> tag Graph:mail, | |
current window $title =~ [m!WhatsApp!, m!Facebook!, m!Twitter!, m!Instagram!, m!YouTube!] ==> tag Graph:social, | |
current window $program == ["Navigator", "chromium", "chrome", "google-chrome"] && !(current window $title =~ [m!WhatsApp!, m!Facebook!, m!Twitter!, m!Instagram!, m!YouTube!, m!Hacker News!, m!Less Wrong!, m![Rr]eddit!, m!Goodreads!, m!GitHub!, m!Ask.fm!, m!Ino[Rr]eader!, m!Gmail!, m!New\ Tab!]) ==> tag Graph:browsing, | |
current window $title =~ [m!Hacker News!, m!Less Wrong!, m![Rr]eddit!, m!GitHub!, m!Ask.fm!, m!Goodreads!] ==> tag Graph:communities, | |
current window $title =~ /.*pdf.*/ ==> tag Graph:read-pdf, | |
current window $title =~ [m!mp4!, m!mkv!, m!avi!] ==> tag Graph:media |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment