Skip to content

Instantly share code, notes, and snippets.

@SilverJan
Last active April 3, 2024 13:49
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SilverJan/a3b236740fd118a0dafc49dcc08df60b to your computer and use it in GitHub Desktop.
Save SilverJan/a3b236740fd118a0dafc49dcc08df60b to your computer and use it in GitHub Desktop.
Bootstrap Studio setup on Ubuntu/Linux incl. desktop file (app launcher)
# step 1) download binary
sudo su
mkdir -p /opt/bootstrapstudio
cd /opt/bootstrapstudio
# get latest link from https://bootstrapstudio.io/download
wget https://bootstrapstudio.io/releases/desktop/5.6.3/Bootstrap%20Studio.AppImage -O bootstrapstudio.AppImage
chmod +x *.AppImage
# step 2) create desktop file
cat <<EOF > /usr/share/applications/bootstrapstudio.desktop
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=Bootstrap Studio
Comment=Open Bootstrap Studio
Exec=/opt/bootstrapstudio/bootstrapstudio.AppImage
Terminal=false
Keywords=bootstrap;studio;bs
Name[en_SG]=Bootstrap Studio
EOF
# step 3) execute
# either via icon (search for "bootstrap" or "bs")
# or via cli `/opt/bootstrapstudio/bootstrapstudio.AppImage`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment