Skip to content

Instantly share code, notes, and snippets.

@manuhabitela
Last active March 18, 2025 10:16
Show Gist options
  • Save manuhabitela/adcdee2bd3609c764090b00f61e46ae9 to your computer and use it in GitHub Desktop.
Save manuhabitela/adcdee2bd3609c764090b00f61e46ae9 to your computer and use it in GitHub Desktop.
Extract aur cursor-bin appimage

I use this script after every https://aur.archlinux.org/packages/cursor-bin update to use cursor outside its appimage archive.

It's meant to be placed and executed in /opt/.

This is useful especially because mise seems to have issues with cursor appimage. Thanks @smujaddid for the tip :)

#!/bin/bash
cd ./cursor-bin
mv ./cursor-bin.AppImage ../
rm -rf ./*
mv ../cursor-bin.AppImage ./
./cursor-bin.AppImage --appimage-extract
mv squashfs-root/* squashfs-root/.* .
rm -rf squashfs-root
chmod -R a+rwX,o-w ./*
sed -i 's/cursor-bin\.AppImage/usr\/bin\/cursor/g' /usr/bin/cursor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment