Skip to content

Instantly share code, notes, and snippets.

@cer-0
Last active December 9, 2021 16:11
Show Gist options
  • Save cer-0/0ed19f7368ecab0d94e706084d166e3c to your computer and use it in GitHub Desktop.
Save cer-0/0ed19f7368ecab0d94e706084d166e3c to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment