This file contains 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
#!/bin/bash | |
DIRLIST="/mnt/media" | |
REPORT_FILE="/home/aaron/moviereport.xml" | |
avg_read_speed() { | |
START_SEC=${1} | |
END_SEC=${2} | |
SIZE_BYTES=${3} |
This file contains 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
// ==UserScript== | |
// @name Open In Steam | |
// @namespace http://brooksaar.com/ | |
// @version 0.2 | |
// @description Adds a link to open Steam content in the desktop client. | |
// @author Aaron Brooks | |
// @match *://steamcommunity.com/* | |
// @match *://store.steampowered.com/* | |
// @grant none | |
// ==/UserScript== |