Last active
December 9, 2021 16:11
-
-
Save cer-0/0ed19f7368ecab0d94e706084d166e3c to your computer and use it in GitHub Desktop.
Revisions
-
cer-0 revised this gist
Dec 9, 2021 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ #!/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 -
cer-0 created this gist
Oct 25, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ #!/usr/bin/env bash # This script will hide apps like "Hardware Info", Avahi* and QT VL42*. for i in {bvnc,bssh,avahi-discover,lstopo,qv4l2,qvidcap}.desktop; do sed -i '3iNoDisplay=true' $i; done