Last active
May 7, 2016 05:33
-
-
Save danielpclark/be22115e1d20d427f06a758e48da643c to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env ruby | |
| require 'neatjson' | |
| @hash = {} | |
| begin | |
| loop do | |
| sleep 15 | |
| x = `xprop -id $(xprop -root 32x '\t$0' _NET_ACTIVE_WINDOW | cut -f 2) _NET_WM_NAME` | |
| x = x.match(/.*\"(.*)\"\n\z/)[1][0..60] | |
| @hash[x] = @hash[x].to_f + 0.25 | |
| end | |
| ensure | |
| @hash = {"*---------- WINDOW NAME ----------*" => "minutes"}.merge(@hash) | |
| File.open("timelog.json","w") do |f| | |
| f.write(JSON.neat_generate(@hash,aligned:true,around_colon:1)) | |
| end | |
| end |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Clock Window script
A minimalist script to keep track of how long each window is active. Measured in quarter minutes. Hash builds until you kill the script with CTRL-C at which point it writes out the log file. This script
adds no extra CPU loadwill not raise the CPUs temperature indicating minimal CPU usage.The output will look quite nice in any text editor aligned by the colon separator.
Linux compatible. Maybe Mac???
Output looks like:
Installation
Save
clock_windowfile in your executable path.To execute just run
./clock_window. If you put this script in your executable path then the timelog.json file should appear in whatever folder you run it from.Contributing
This script is now a gem and we're looking for people to help this be a cross OS compatible script. https://github.com/danielpclark/clock_window
The MIT License (MIT)
Copyright (c) 2016 Daniel P. Clark
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.