This file contains 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
tint2 & | |
/usr/lib64/xfce4/notifyd/xfce4-notifyd & | |
xfce4-clipman & | |
xfce4-power-manager & | |
nm-applet & | |
volumeicon & |
This file contains 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
javascript: | |
(async () => { | |
let parentType = (element,type) => { | |
if (element.nodeName.toLowerCase() == type.toLowerCase()) { | |
return element; | |
} else if (element.parentElement != null) { | |
return parentType(element.parentElement,type); | |
} else { | |
return false; | |
} |
This file contains 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
javascript:(() => { | |
prompt().split("|").map(e => { | |
let a = document.createElement("a"); | |
a.href = e; | |
a.target = "_blank"; | |
a.click(); | |
}); | |
})(); |
This file contains 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
javascript:(() => { | |
const pdftk = "https://web-pdftk.herokuapp.com/?inputs="; | |
window.location.href = pdftk+[...document.querySelectorAll(".title a")] | |
.map(url => { | |
url = url.href.split("/"); | |
if (typeof url.find(component => component == "pdf") === "undefined") { | |
url.splice(-1,0,"pdf"); | |
} | |
url = url.join("/"); | |
url = encodeURIComponent(pdftk+url+"&operation=cat&options=2-end"); |