Created
August 2, 2022 21:33
-
-
Save ammunoz/50249e7198c7c7fc262c72024bbe16a2 to your computer and use it in GitHub Desktop.
Installing Pop-os/Shell on Solus GNOME
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
#!/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!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On Solus GNOME, run script with
./build_install_popos_shell_solus_gnome.sh
. Requires super user privilege.References:
Works as of
4cf9e14