-
Install "User JavaScript and CSS" extension from https://chromewebstore.google.com/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld
-
Go to https://www.figma.com/, open any design file.
-
Click the extension button, add a new rule
-
Paste the following Javascript, Save, reload Figma tab.
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
#!/bin/bash | |
# - download this file | |
# - make it executable: | |
# chmod +x vscode-statusbar-on-top.sh | |
# - find workbench.desktop.main.css inside your VSCode instance; | |
# - copy its path here: | |
css_path="/Applications/Visual Studio Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.css" |
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
{ | |
"$schema": "vscode://schemas/color-theme", | |
"type": "light", | |
"colors": { | |
"activityBar.activeBorder": "#ad514c", | |
"activityBar.background": "#f7f3f0", | |
"activityBar.border": "#80797420", | |
"activityBar.foreground": "#807974", | |
"activityBarBadge.background": "#b29084", | |
"activityBarBadge.foreground": "#fcfbfa", |
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
/* more Tiniri themes: https://tiniri.vlad.studio/ */ | |
html { | |
--ui-font: ui-sans-serif, sans-serif !important; | |
--editor-font: ui-sans-serif, sans-serif !important; | |
--editor-width: 800px !important; | |
line-height: 1.5 !important; | |
} | |
html { |
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
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title LLM | |
# @raycast.mode fullOutput | |
# Optional parameters: | |
# @raycast.icon 🤖 | |
# @raycast.argument1 { "type": "text", "placeholder": "Prompt" } |