Skip to content

Instantly share code, notes, and snippets.

@danielpclark
Last active May 7, 2016 05:33
Show Gist options
  • Select an option

  • Save danielpclark/be22115e1d20d427f06a758e48da643c to your computer and use it in GitHub Desktop.

Select an option

Save danielpclark/be22115e1d20d427f06a758e48da643c to your computer and use it in GitHub Desktop.
#!/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
@danielpclark
Copy link
Author

danielpclark commented May 6, 2016

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 load will 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:

{
  "*---------- WINDOW NAME ----------*"                           : "minutes",
  "Pandora Internet Radio - Listen to Free Music You'll Love - C" : 0.5,
  "MetaRuby - Ruby Forum - Chromium"                              : 0.25,
  "New Tab - Chromium"                                            : 0.5,
  "Ruby Weekly Issue 296: May 5, 2016 - Chromium"                 : 0.5 
}

Installation

Save clock_window file in your executable path.

gem install neatjson
chmod +x clock_window

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment