Skip to content

Instantly share code, notes, and snippets.

@tresende
Last active September 10, 2022 20:31
Show Gist options
  • Save tresende/1b676e658aa250de5c851bfab22cae95 to your computer and use it in GitHub Desktop.
Save tresende/1b676e658aa250de5c851bfab22cae95 to your computer and use it in GitHub Desktop.
module.exports = {
config: {
opacity: {
focus: 0.9,
blur: 0.5
},
hyperBorder: {
borderWidth: '3px',
},
updateChannel: 'stable',
fontSize: 12,
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
fontWeight: 'normal',
fontWeightBold: 'bold',
lineHeight: 1,
letterSpacing: 0,
cursorColor: 'rgba(248,28,229,0.8)',
cursorAccentColor: '#000',
cursorShape: 'BLOCK',
cursorBlink: false,
foregroundColor: '#fff',
backgroundColor: '#000',
selectionColor: 'rgba(248,28,229,0.3)',
borderColor: '#333',
css: '',
termCSS: '',
showHamburgerMenu: '',
showWindowControls: '',
padding: '12px 14px',
colors: {
black: '#000000',
red: '#C51E14',
green: '#1DC121',
yellow: '#C7C329',
blue: '#0A2FC4',
magenta: '#C839C5',
cyan: '#20C5C6',
white: '#C7C7C7',
lightBlack: '#686868',
lightRed: '#FD6F6B',
lightGreen: '#67F86F',
lightYellow: '#FFFA72',
lightBlue: '#6A76FB',
lightMagenta: '#FD7CFC',
lightCyan: '#68FDFE',
lightWhite: '#FFFFFF',
},
shell: 'zsh',
shellArgs: ['--login'],
env: {},
bell: 'SOUND',
copyOnSelect: false,
defaultSSHApp: true,
},
plugins: [
'hyperborder',
'hyper-snazzy',
'hyper-opacity'
],
};
@tresende
Copy link
Author

hyper config mac
module.exports = { config: { opacity: { focus: 0.9, blur: 0.5 }, hyperBorder: { animate: '6s', borderWidth: '2px', }, updateChannel: 'stable', fontSize: 12, fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', fontWeight: 'bold', fontWeightBold: 'bold', lineHeight: 1, letterSpacing: 0, cursorColor: 'rgba(248,28,229,0.8)', cursorAccentColor: '#000', cursorShape: 'BLOCK', cursorBlink: false, foregroundColor: '#fff', backgroundColor: '#000', selectionColor: 'rgba(248,28,229,0.3)', borderColor: '#333', css: '', termCSS: '', showHamburgerMenu: '', showWindowControls: '', padding: '12px 14px', colors: { black: '#000000', red: '#C51E14', green: '#1DC121', yellow: '#C7C329', blue: '#0A2FC4', magenta: '#C839C5', cyan: '#20C5C6', white: '#C7C7C7', lightBlack: '#686868', lightRed: '#FD6F6B', lightGreen: '#67F86F', lightYellow: '#FFFA72', lightBlue: '#6A76FB', lightMagenta: '#FD7CFC', lightCyan: '#68FDFE', lightWhite: '#FFFFFF', }, shell: '', shellArgs: ['--login'], env: {}, bell: 'SOUND', copyOnSelect: false, defaultSSHApp: true, }, plugins: [ 'hyperborder', 'hyper-snazzy', 'hyper-opacity' ], };

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment