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 | |
# === Config === | |
APP_DIR="/opt/cursor-ai" | |
APP_FILE="$APP_DIR/AppRun" | |
APPIMAGE_FILE="$APP_DIR/Cursor.AppImage" | |
VERSION_FILE="$APP_DIR/cursor-version" | |
DESKTOP_FILE="$HOME/.local/share/applications/cursor.desktop" | |
mv ~/Downloads/Cursor* /opt/cursor-ai/ |
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
@keyframes navbar { | |
0% {height: 40px; max-height: 40px; min-height: 40px;} | |
93% {height: 40px; max-height: 40px; min-height: 40px;} | |
100% {height: 0; max-height: 0; min-height: 0;} | |
} | |
@keyframes navbarHover { | |
100% {height: 40px; max-height: 40px; min-height: 40px;} | |
} |
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
// ==UserScript== | |
// @name f8 debugger | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-05-13 | |
// @description try to take over the world! | |
// @author You | |
// @match *://*/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net | |
// @grant none | |
// ==/UserScript== |