mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2025-12-06 06:36:15 +00:00
18 lines
548 B
JavaScript
18 lines
548 B
JavaScript
// Use to display the time remaining on the Battery widget
|
|
function formatVagueHumanReadableDuration(totalSeconds) {
|
|
const hours = Math.floor(totalSeconds / 3600);
|
|
const minutes = Math.floor((totalSeconds - (hours * 3600)) / 60);
|
|
const seconds = totalSeconds - (hours * 3600) - (minutes * 60);
|
|
|
|
var str = "";
|
|
if (hours) {
|
|
str += hours.toString() + "h";
|
|
}
|
|
if (minutes) {
|
|
str += minutes.toString() + "m";
|
|
}
|
|
if (!hours && !minutes) {
|
|
str += seconds.toString() + "s";
|
|
}
|
|
return str;
|
|
} |