This file contains 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/bash | |
# | |
# 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 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
// Using lots of good settings from: https://github.com/b0o/surfingkeys-conf/blob/master/conf.js | |
// ---- Unmaps ----// | |
// Normal mode unmaps | |
const unmaps = [ | |
'x', 'ZQ', 'ZZ', | |
'ZR', 'sob', 'soB', | |
'sow', 'soW', 'sb', | |
'sB', 'sw', 'sW', |