Skip to content

Instantly share code, notes, and snippets.

View cer-0's full-sized avatar
👾
hack the planet

e cer-0

👾
hack the planet
View GitHub Profile
@cer-0
cer-0 / hide_unwanted_gnome_apps.sh
Last active December 9, 2021 16:11
Hide unused apps from GNOME shell
#!/usr/bin/env bash
# This script will hide apps like "Hardware Info", Avahi* and QT VL42*.
cd /usr/share/applications/
for i in {bvnc,bssh,avahi-discover,lstopo,qv4l2,qvidcap}.desktop; do sudo sed -i '3iNoDisplay=true' $i; done