View GregoCompileAHK.ahk
;Simple Compile Script for Gregorio. | |
;Tuesday, March 10, 2015 | |
;by Brother Gabriel-Marie | |
;Just a simple script to compile a gabc file to pdf; easily modifiable to accomodate multiple scripts in multiple directories. | |
#SingleInstance,Force | |
#noenv | |
fileencoding, UTF-8 | |
;filename variables - just set the names here - without file extensions |
View main-lualatex.tex
% !TEX TS-program = lualatex | |
% !TEX encoding = UTF-8 | |
% This is a simple template for a LuaLaTeX document using gregorio scores. | |
\documentclass[11pt]{article} % use larger type; default would be 10pt | |
% usual packages loading: | |
\usepackage{fontspec} | |
\usepackage{graphicx} % support the \includegraphics command and options |
View Score.gabc
name: incipit; | |
gabc-copyright: copyright on this gabc file; | |
score-copyright: copyright on the source score; | |
office-part: introitus/...; | |
occasion: in church calendar; | |
meter: for metrical hymns; | |
commentary: source of words; | |
arranger: name of arranger; | |
gabc-version: 0.9.3; | |
author: if known; |
View instantbirder.ahk
#singleinstance force | |
#noenv | |
;directives | |
coordmode, mouse, screen ;set mouse to get coords from screen | |
settitlematchmode 2 | |
;------------------------------------------------------------------- | |
;variables for the Instantbird focuser | |
instantbird := " - Instantbird" ;the title of the typing window is something like "Name of Person - Instantbird" --I confirm that the " - " is always in the title, complete with the two spaces on either side of the hyphen. | |
curwin := "" |
View freepbx.userscript
// ==UserScript== | |
// @name FreePBX | |
// @namespace @bgm-freepbx | |
// @description freepbx interface mods | |
// @include http://YOUR_SERVER_HERE/admin/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @version 1 | |
// @grant GM_addStyle | |
// @run-at document-end | |
// ==/UserScript== |
View RotatePDF.tex
%Rotate a pdf file by any degree | |
%Works on every page of a multi-page pdf file | |
%You can't even buy software that will do this! | |
%http://tex.stackexchange.com/questions/233513/how-to-rotate-a-pdf | |
\documentclass{article} | |
\usepackage{pdfpages} | |
\begin{document} | |
\includepdf[pages={-},angle=0.7]{yourPDFfile.pdf} | |
\end{document} |
View compile-tex.ahk
;Simple Compile Script for tex files. | |
;Monday, March 16, 2015 | |
;by Brother Gabriel-Marie | |
;Just a simple script to compile a tex file to pdf; | |
;easily modifiable to accomodate multiple scripts in multiple directories. | |
#SingleInstance,Force | |
#noenv | |
fileencoding, UTF-8 |
View AX.cfg
;Brother Gabriel-Marie's AX char config | |
;March 17, 2015 | |
;You can get AX here: http://vulpeculox.net/ax/ | |
; ------------------------------------------------------------------- | |
; HOTKEY | |
; ------------------------------------------------------------------- | |
; Tells which hot key to use. | |
; Possible values are F1 ••• F12 | |
; ------------------------------------------------------------------- | |
KEY=F9 |
View ahkinfo.ahk
;push win+3 to show your autohotkey information and copy it to your clipboard so you can paste it | |
#3::ahkinfo() | |
ahkinfo(){ | |
isunicode := a_isunicode ? "Unicode" : "ANSI" | |
thisinfo:= "AutoHotkey " . a_ahkversion . " " . isunicode . " on Windows 7 Pro x64" | |
clipboard := thisinfo | |
alert(thisinfo) | |
} |
View volume.ahk
;control your system volume via hotkeys | |
;# is the win key | |
;^ is the control key | |
;sound controls | |
#[::setVolume("-5") ;lower volume by 5% | |
#]::setVolume("+5") ;raise volume by 5% | |
^#[::setVolume("10") ;set volume to minimum | |
^#]::setVolume("80") ;set volume to loud | |
SetVolume(whatvolume){ |
OlderNewer