diff --git a/applications/icons/cursor.png b/applications/icons/cursor.png new file mode 100644 index 0000000..3345b7d Binary files /dev/null and b/applications/icons/cursor.png differ diff --git a/bin/omakub-sub/install.sh b/bin/omakub-sub/install.sh index 3e35081..48f49fc 100644 --- a/bin/omakub-sub/install.sh +++ b/bin/omakub-sub/install.sh @@ -4,6 +4,7 @@ CHOICES=( "1password Manage your passwords securely across devices" "Audacity Record and edit audio" "Brave Chrome-based browser with built-in ad blocking" + "Cursor The AI Code Editor" "Doom Emacs Emacs framework with curated list of packages" "Dropbox Sync files across computers with ease" "OBS Studio Record screencasts with inputs from both display + webcam" diff --git a/boot.sh b/boot.sh index 746c6e2..b489a85 100755 --- a/boot.sh +++ b/boot.sh @@ -9,7 +9,7 @@ ascii_art='________ __ ___. ' echo -e "$ascii_art" -echo "=> Omakub is for fresh Ubuntu 24.04 installations only!" +echo "=> Omakub is for fresh Ubuntu 24.04+ installations only!" echo -e "\nBegin installation (or abort with ctrl+c)..." sudo apt-get update >/dev/null diff --git a/configs/neovim/lazyvim.json b/configs/neovim/lazyvim.json deleted file mode 100644 index eaa6749..0000000 --- a/configs/neovim/lazyvim.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extras": [ "lazyvim.plugins.extras.lang.go" ], - "version": 6 -} diff --git a/defaults/bash/aliases b/defaults/bash/aliases index 5232f64..0a95107 100644 --- a/defaults/bash/aliases +++ b/defaults/bash/aliases @@ -1,5 +1,5 @@ # File system -alias ls='eza -lh --group-directories-first --icons' +alias ls='eza -lh --group-directories-first --icons=auto' alias lsa='ls -a' alias lt='eza --tree --level=2 --long --icons --git' alias lta='lt -a' diff --git a/defaults/xcompose b/defaults/xcompose index 24a6b72..116d75d 100644 --- a/defaults/xcompose +++ b/defaults/xcompose @@ -20,3 +20,6 @@ include "%L"

: "🙏" # pray : "😉" # wink : "👌" # OK + : "👋" # greeting + : "💪" # arm + : "🤯" # blowing diff --git a/install/desktop/optional/app-cursor.sh b/install/desktop/optional/app-cursor.sh new file mode 100644 index 0000000..ddab8fe --- /dev/null +++ b/install/desktop/optional/app-cursor.sh @@ -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" <