Skip to content

Instantly share code, notes, and snippets.

defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
@0x-jerry
0x-jerry / delete_launchpad_icon.sh
Created February 3, 2022 08:16
remove icon from launchpad
# change APP_NAME_CASE_SENSITIVE to delete icon
sqlite3 $(find /private/var/folders \( -name com.apple.dock.launchpad -a -user $USER \) 2> /dev/null)/db/db "DELETE FROM apps WHERE title='APP_NAME_CASE_SENSITIVE';" && killall Dock
@0x-jerry
0x-jerry / fastdel.cmd
Created October 11, 2019 03:59
fast delete on windows
del /f/s/q %1\*.* > nul
rmdir /s/q %1 > nul
@0x-jerry
0x-jerry / colors.jsonc
Last active February 3, 2022 08:17
中国色
// 摘自 https://color.uisdc.com/
[
{
"name": "黛蓝",
"color": "#425066"
},
{
"name": "赭",
"color": "#9c5333"
},
@0x-jerry
0x-jerry / v2ray.schema.json
Last active December 5, 2019 05:15
v2ray config json schema (Abandoned!!! Please use https://github.com/cwxyz007/v2ray-config-json-schema instead)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "V2Ray",
"description": "V2Ray config",
"definitions": {
"account": {
"type": "object",
"properties": {
"user": {