Skip to content

Instantly share code, notes, and snippets.

View lsaffie's full-sized avatar

Luis Saffie lsaffie

View GitHub Profile
@lsaffie
lsaffie / Tmux cheatsheet.md
Created January 5, 2017 15:43
tmux-cheatsheet
var widget_embed_libraries_191_version = "1.0";
(function(window, document, $, undefined) {
var W = $(window),
D = $(document),
F = $.fancybox = function() {
F.open.apply(this, arguments)
},
IE = navigator.userAgent.match(/msie/),
didUpdate = null,
isTouch = document.createTouch !== undefined,
@lsaffie
lsaffie / set-all-chrome-windows-to-first.scpt
Created June 4, 2019 19:53
Cycle through All Chrome windows and activate the first tab
tell application "/Applications/Google Chrome.app"
repeat with w in windows
set active tab index of w to 1
end repeat
end tell