Skip to content

Instantly share code, notes, and snippets.

@ammunoz
Created August 2, 2022 21:33
Show Gist options
  • Save ammunoz/50249e7198c7c7fc262c72024bbe16a2 to your computer and use it in GitHub Desktop.
Save ammunoz/50249e7198c7c7fc262c72024bbe16a2 to your computer and use it in GitHub Desktop.
Installing Pop-os/Shell on Solus GNOME
#!/usr/bin/bash
set -e
LOG="build_popshell.log"
# Run usual updates
sudo eopkg up >> $LOG
# Install dev tools for the build
echo "Installing dev tools.."
sudo eopkg install -c system.devel >> $LOG
sudo eopkg install git nodejs >> $LOG
# Install Typescript
sudo npm install -g typescript >> $LOG
# Grab source code
echo "Grabbing source code.."
git clone https://github.com/pop-os/shell >> $LOG
cd shell
# Build
echo "Building.."
make >> $LOG
# Install
echo "Installing.."
make local-install >> $LOG
echo "Success!"
@ammunoz
Copy link
Author

ammunoz commented Aug 2, 2022

On Solus GNOME, run script with ./build_install_popos_shell_solus_gnome.sh. Requires super user privilege.

References:

Works as of 4cf9e14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment