This file contains hidden or 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
! "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 |
This file contains hidden or 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
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; |