brew install gum
Use the multi-line editor to write a commit message:
git commit -m "$(gum write --width 50 --placeholder "Summary of changes")"
| // Menu: Genius Lyrics Search | |
| let Genius = await npm('genius-lyrics-api') | |
| let geniusUserToken = await env("GENIUS_AUTH_TOKEN") | |
| import { getLyrics, searchSong } from 'genius-lyrics-api'; | |
| let songTitle = await arg("Song Title") | |
| let options = { |
| // Menu: Genius Lyrics Search | |
| let Genius = await npm('genius-lyrics-api') | |
| let geniusUserToken = await env("GENIUS_AUTH_TOKEN") | |
| import { getLyrics, searchSong } from 'genius-lyrics-api'; | |
| let songTitle = await arg("Song Title") | |
| let options = { |
brew install gum
Use the multi-line editor to write a commit message:
git commit -m "$(gum write --width 50 --placeholder "Summary of changes")"
| addMutationObserver(); | |
| function addMutationObserver() { | |
| const observer = new MutationObserver(function (mutations) { | |
| mutations.forEach(function (mutation) { | |
| mutation.target.querySelectorAll("ytd-grid-video-renderer").forEach(handleElement); | |
| }); | |
| }); | |
| observer.observe(document.body, { subtree: true, childList: true }); | |
| } |
| a[href="/chat"] { | |
| display: none !important; | |
| } | |
| .notion-assistant-corner-origin-container { | |
| display: none; | |
| } |
| if(prop("Status") != "Done", | |
| if(formatDate(dateEnd(dateStart(prop("Due"))), "MMM DD, YYYY") == formatDate(now(), "MMM DD, YYYY"), "Due Today ⌛", | |
| if(dateBetween(dateEnd(prop("Due")), now(), "days") > 0, format(abs(dateBetween(dateEnd(prop("Due")), now(), "days")) + 1) + " Days ⏳", | |
| if(dateBetween(dateEnd(prop("Due")), now(), "days") > -1, "Due Tomorrow ⏳", | |
| if(dateBetween(dateEnd(prop("Due")), now(), "days") < 0, format(abs(dateBetween(dateEnd(dateStart(prop("Due"))), now(), "days"))) + " Days Past Due 🔥", "")) | |
| ) | |
| ), | |
| "") |