Skip to content

Instantly share code, notes, and snippets.

View mzurs's full-sized avatar
💯
Focusing

zohaib mzurs

💯
Focusing
View GitHub Profile
@mzurs
mzurs / CV.pdf
Created July 20, 2025 16:12
Zohaib-CV
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mzurs
mzurs / CursorDesktopIntegrator.sh
Created April 4, 2025 10:38 — forked from arpagon/CursorDesktopIntegrator.sh
CursorDesktopIntegrator
#!/bin/bash
# Step 1: Find the latest version of the .AppImage
LATEST_APPIMAGE=$(ls -t $HOME/Applications/Cursor-*.AppImage | head -n 1)
echo "Latest AppImage: $LATEST_APPIMAGE"
# Step 2: Update symlink to the latest version
SYMLINK_PATH="$HOME/Applications/cursor.AppImage"
ln -sf $LATEST_APPIMAGE $SYMLINK_PATH
echo "Updated symlink to: $SYMLINK_PATH"