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
#!/bin/zsh | |
# | |
# This file echoes a bunch of 24-bit color codes | |
# to the terminal to demonstrate its functionality. | |
# The foreground escape sequence is ^[38;2;<r>;<g>;<b>m | |
# The background escape sequence is ^[48;2;<r>;<g>;<b>m | |
# <r> <g> <b> range from 0 to 255 inclusive. | |
# The escape sequence ^[0m returns output to default | |
setBackgroundColor() |
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
/* ~/Library/Application Support/Firefox/Profiles/tpgqgx56.default-release/chrome/userChrome.css */ | |
/* Profile folder can be find in about:support */ | |
/* Required in about:config `toolkit.legacyUserProfileCustomizations.stylesheets` - true */ | |
.browserContainer > findbar { | |
order:-1 !important; | |
} |
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
#!/bin/zsh | |
echo '\033[30mBLACK: Test colors for the Terminal\033[m' | |
echo '\033[90mBLACK BRIGHT: Test colors for the Terminal\033[m' | |
echo '\033[31mRED: Test colors for the Terminal\033[m' | |
echo '\033[91mRED BRIGHT: Test colors for the Terminal\033[m' | |
echo '\033[32mGREEN: Test colors for the Terminal\033[m' | |
echo '\033[92mGREEN BRIGHT: Test colors for the Terminal\033[m' | |
echo '\033[33mYELLOW: Test colors for the Terminal\033[m' | |
echo '\033[93mYELLOW BRIGHT:Test colors for the Terminal\033[m' |
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
defaults write com.apple.dock autohide-delay -float 1000; killall Dock | |
defaults delete com.apple.dock autohide-delay; killall Dock |