Skip to content

Instantly share code, notes, and snippets.

View bignimbus's full-sized avatar
🙃

Jeff Auriemma bignimbus

🙃
View GitHub Profile
! "Enabled modi" Set from: Default
! rofi.modi: window,run,ssh
! "Window opacity" Set from: Default
! rofi.opacity: 100
! "Window width" Set from: Default
! rofi.width: 50
! "Number of lines" Set from: Default
! rofi.lines: 15
! "Number of columns" Set from: Default
! rofi.columns: 1
@letsgetrandy
letsgetrandy / rangemap.js
Last active August 29, 2015 14:07
Provide values for ranges
var Rangemap = function(points, values) {
this.points = points || [];
this.values = values || [];
};
Rangemap.prototype = {
"equalInRange": true,
"compare": function(a, b) {
if (a === b) {
return this.equalInRange;