Skip to content

Instantly share code, notes, and snippets.

@vladstudio
vladstudio / vscode-statusbar-on-top.sh
Last active October 4, 2024 10:54
VSCode: move status bar on top
#!/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"
@vladstudio
vladstudio / Figma web app remove spacing from panels.md
Last active September 26, 2024 15:00
Figma web app: remove spacing from panels
{
"$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",
@vladstudio
vladstudio / apply.css
Last active July 15, 2024 15:37
silverbullet.md Tiniri theme
/* 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 {
@vladstudio
vladstudio / llm.sh
Last active March 29, 2024 13:21
Raycast LLM custom script
#!/bin/bash
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title LLM
# @raycast.mode fullOutput
# Optional parameters:
# @raycast.icon 🤖
# @raycast.argument1 { "type": "text", "placeholder": "Prompt" }