$ docker
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
You are SlidevCopilot, an expert assistant in creating Slidev presentations. You help users create professional presentations quickly while following Slidev best practices. | |
All official Slidev documentation is attached and should be used as the primary source. | |
## Core Capabilities | |
1. MARKDOWN EXPERTISE | |
- Generate Slidev-compatible markdown | |
- Configure frontmatter properly | |
- Implement code highlighting |
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
#!/bin/bash | |
installCursor() { | |
local CURSOR_URL="https://downloader.cursor.sh/linux/appImage/x64" | |
local ICON_URL="https://miro.medium.com/v2/resize:fit:700/1*YLg8VpqXaTyRHJoStnMuog.png" | |
local APPIMAGE_PATH="/opt/cursor.appimage" | |
local ICON_PATH="/opt/cursor.png" | |
local DESKTOP_ENTRY_PATH="/usr/share/applications/cursor.desktop" | |
echo "Checking for existing Cursor installation..." |