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
// Evaluate the following in Firefox Browser Console | |
copy("Not Wordle, just my #firefox tabs:\n" + | |
gBrowser.tabs | |
.map(tab => tab.pinned ? `🟪` : tab.getAttribute("pending") ? `🟨` : `🟩` ) | |
.reduce((acc, curr) => { | |
if (acc.at(-1).length == 10) { | |
acc.push(""); | |
} | |
acc[acc.length - 1] += curr; | |
return acc; |
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
[alias] | |
wip = log --graph --rev=wip --template=wip | |
[revsetalias] | |
wip = (parents(not public()) or not public() or . or (head() and branch(default))) and (not obsolete() or orphan()^) and not closed() and not (fxheads() - date(-90)) | |
ignored_changesets = desc("ignore-this-changeset") or extdata(get_ignored_changesets) | |
[templates] | |
wip = '{ | |
label( |
OlderNewer