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 |