PrawnOS-nonfree/resources/InstallResources/extensions/window-corner-preview@fabiomereu.it/bundle.js
gdallasdye 93192fa511
Revived Gnome Support (#162)
* Add gnome, stable and unstable mesa packages,

* Install unstable mesa and stable gnome packages
2020-05-26 16:43:15 -07:00

53 lines
1.3 KiB
JavaScript

"use strict";
function normalizeRange(denormal, min, max, step) {
if (step !== undefined) denormal = Math.round(denormal / step) * step;
// To a range 0-1
return (denormal - min) / (max - min);
};
function deNormalizeRange(normal, min, max, step) {
// from [0, 1] to MIN - MAX
let denormal = (max - min) * normal + min;
if (step !== undefined) denormal = Math.round(denormal / step) * step;
return denormal;
};
// Truncate too long window titles on the menu
function spliceTitle(text, max) {
text = text || "";
max = max || 25;
if (text.length > max) {
return text.substr(0, max - 2) + "...";
}
else {
return text;
}
};
function getWindowSignature(metawindow) {
return "".concat(
metawindow.get_pid(),
metawindow.get_wm_class(),
metawindow.get_title()//,
// metawindow.get_stable_sequence()
);
}
function getWindowHash(metawindow) {
return metawindow ? sdbm(getWindowSignature(metawindow)).toString(36) : "";
}
// https://github.com/sindresorhus/sdbm
function sdbm(string) {
let hash = 0;
for (let i = 0; i < string.length; i++) {
hash = string.charCodeAt(i) + (hash << 6) + (hash << 16) - hash;
}
// Convert it to an unsigned 32-bit integer
return hash >>> 0;
}