-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: Dont show file system by default Acknowledge compatibility with 24.10 Prepare for 1.1.6 release Revert "Add the julia programming language" Remove trailing whitespace Dont enable go for lazyvim since it may not be installed Set default PHP version to 8.4 on installation Set Default Ruby version to 3.4 on installation Add julia fix cursor parameter and apt related commands Cursor AI Editor Fix shell completion for 'ls' alias by setting '--icons=auto'
- Loading branch information
Showing
11 changed files
with
33 additions
and
12 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
cd /tmp | ||
curl -L --output cursor.appimage https://downloader.cursor.sh/linux/x64 | ||
sudo mv cursor.appimage /opt/cursor.appimage | ||
sudo chmod +x /opt/cursor.appimage | ||
sudo apt install -y fuse3 | ||
sudo apt install -y libfuse2t64 | ||
|
||
DESKTOP_FILE="/usr/share/applications/cursor.desktop" | ||
|
||
sudo bash -c "cat > $DESKTOP_FILE" <<EOL | ||
[Desktop Entry] | ||
Name=Cursor | ||
Comment=AI-powered code editor | ||
Exec=/opt/cursor.appimage --no-sandbox | ||
Icon=/home/$USER/.local/share/omakub/applications/icons/cursor.png | ||
Type=Application | ||
Categories=Development;IDE; | ||
EOL | ||
|
||
if [ -f "$DESKTOP_FILE" ]; then | ||
echo "cursor.desktop created successfully" | ||
else | ||
echo "Failed to create cursor.desktop" | ||
fi |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
sudo rm /opt/cursor.appimage | ||
sudo rm /usr/share/applications/cursor.desktop |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.5 | ||
1.1.6 |