Last active
December 9, 2021 16:11
-
-
Save cer-0/0ed19f7368ecab0d94e706084d166e3c to your computer and use it in GitHub Desktop.
Hide unused apps from GNOME shell
This file contains hidden or 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/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