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
/** | |
* @name 100 darknacho | |
* @author Alaestor Weissman | |
* @version 0.1.0 | |
* @description Dark Orange Colorscheme with a pixel nacho | |
*/ | |
.theme-light, | |
.theme-dark { | |
--background-primary: rgb(17, 17, 17); |
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
/** | |
* @name 900 Annoyances | |
* @author Alaestor Weissman | |
* @version 0.5.0 | |
* @description Removes junk I don't like | |
*/ | |
[id = "cash-app-pay-container" ] , | |
/* DM pane */ | |
h2:has( [aria-label = "Start An Activity" ] ) , | |
h2:has( [aria-label = "Start An Activity" ] ) ~ div, |
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
def userConfirmation(msg: str = 'Confirm', default: bool|None = None) -> bool: | |
prompt = f"{msg} ({'y/n' if default is None else 'Y/n' if default else 'y/N'}): " | |
while True: | |
user_input = input(prompt).strip().lower() | |
if user_input in ['y', 'yes']: | |
return True | |
elif user_input in ['n', 'no']: | |
return False | |
elif default is not None: | |
return default |
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
function mkBtnMeta(id, icon, cmd) { | |
return `\`\`\`\`meta-bind-button | |
label: "" | |
icon: ${icon} | |
hidden: true | |
class: "" | |
tooltip: "" | |
id: ${id} | |
style: primary | |
actions: |