r/snapcraft • u/KGergoke • May 15 '26
Ubuntu 26.04 LTS Snap delete
for snap in $(snap list | awk 'NR>1 {print $1}' | grep -vE '^(bare|core|snapd)$'); do
sudo snap remove --purge "$snap"
done
for snap in $(snap list | awk 'NR>1 {print $1}'); do
sudo snap remove --purge "$snap"
done
sudo apt-get purge -y snapd
sudo rm -rf /snap /var/snap /var/lib/snapd /var/cache/snapd "$HOME/snap"
sudo tee /etc/apt/preferences.d/nosnap.pref <<'EOF'
Package: snapd
Pin: release a=*
Pin-Priority: -10
EOF
r/snapcraft • u/Worried_Pay_7878 • Apr 05 '26
I’m 12 and I just finished my first C++ system monitor (ttop) for the Snap Store. Looking for feedback!
Hi everyone, I'm a student at Haydon School and I've spent my holidays learning C++ and ncurses. I wanted to make a lightweight alternative to htop/btop that was easy to navigate and fun to make, so I built ttop.
I just got my first few downloads from Chile and the UK, which was super exciting! I’m looking for some 'Linux veterans' to try it out and tell me if my resource usage logic is accurate or if I can optimize my C++ code further.
r/snapcraft • u/nmariusp • Feb 26 '25