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
@interface BigLetterView : NSView <NSDraggingSource> { | |
NSColor *bgColor; | |
NSString *string; | |
NSMutableDictionary *attributes; | |
NSEvent *mouseDownEvent; | |
} |
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
# Configuration file for the color ls utility | |
# Synchronized with coreutils 8.5 dircolors | |
# This file goes in the /etc directory, and must be world readable. | |
# You can copy this file to .dir_colors in your $HOME directory to override | |
# the system defaults. | |
# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not | |
# pipes. 'all' adds color characters to all output. 'none' shuts colorization | |
# off. | |
COLOR tty |
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
// ==UserScript== | |
// @name Notion ^J disabler | |
// @namespace https://kzt.sh/ | |
// @version 0.1 | |
// @description disable ^J on notion.so | |
// @author [email protected] | |
// @match https://www.notion.so/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
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
{ | |
"title": "esc = ctrl + g unless iTerm2", | |
"rules": [ | |
{ | |
"description": "Control + g => Escape unless iTerm2", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "g", | |
"modifiers": { |
OlderNewer