Skip to content

Instantly share code, notes, and snippets.

@wulingyun
wulingyun / cleanMacMenu.sh
Created January 12, 2022 06:54
Clean the Open With menu in macOS
cd /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support
./lsregister -kill -r -all local, system, user; killall Dock;
@wulingyun
wulingyun / 黑白网页.html
Created April 3, 2020 17:42
黑白悼念模式网页
<!-- 在网页的 head 部分加入以下内容,可以将网页改为黑白悼念模式 -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<style type="text/css">
html {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url(data:image/svg+xml;utf8,;#grayscale);