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
| @import url(https://fonts.googleapis.com/css?family=Khula:700); | |
| body { | |
| background: #111; | |
| } | |
| .hidden { | |
| opacity:0; | |
| } | |
| .console-container { | |
| font-family:Khula; |
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
| \[(.*?)\] |
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
| fif() { | |
| rg \ | |
| --column \ | |
| --line-number \ | |
| --no-column \ | |
| --no-heading \ | |
| --fixed-strings \ | |
| --ignore-case \ | |
| --hidden \ | |
| --follow \ |
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
| tail -f /var/log/wifi.log | bat --paging=never -l log |
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
| export FZF_DEFAULT_OPTS=" | |
| --layout=reverse | |
| --info=inline | |
| --height=80% | |
| --multi | |
| --preview-window=:hidden | |
| --preview '([[ -f {} ]] && (bat --style=numbers --color=always {} || cat {})) || ([[ -d {} ]] && (tree -C {} | less)) || echo {} 2> /dev/null | head -200' | |
| --color='hl:148,hl+:154,pointer:032,marker:010,bg+:237,gutter:008' | |
| --prompt='∼ ' --pointer='▶' --marker='✓' | |
| --bind '?:toggle-preview' |
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
| git clone --depth 1 [email protected]:dexpota/kitty-themes.git ~/.config/kitty/kitty-themes | |
| ln -s ~/.config/kitty/kitty-themes/themes/Dracula.conf ~/.config/kitty/theme.conf |
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
| { | |
| "basics": { | |
| "name": "Matthew J. Ogram", | |
| "label": "Software Engineer", | |
| "picture": "https://i.imgur.com/FSl4zjT.png", | |
| "email": "email", | |
| "phone": "phone", | |
| "website": "https://github.com/emjayoh", | |
| "summary": "Seasoned engineer with passion for emerging frontend technologies and modern approaches to the evolving challenges in the web application space", | |
| "location": { |
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
| { | |
| "theme": "light", | |
| "autoUpdate": false, | |
| "snippet": { | |
| "expanded": true, | |
| "newSnippetPrivate": false, | |
| "sorting": "updated_at", | |
| "sortingReverse": true | |
| }, | |
| "editor" : { |
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
| { | |
| "basics": { | |
| "name": "Matthew J. Ogram", | |
| "label": "Software Engineer", | |
| "picture": "https://avatars3.githubusercontent.com/u/5733079?s=460&u=e8f305e7c990eb5043b764a21cbce53d74c4b000&v=4", | |
| "email": "[email protected]", | |
| "phone": "phone", | |
| "website": "https://github.com/emjayoh", | |
| "summary": "Seasoned engineer with passion for emerging frontend technologies and modern approaches to the evolving challenges in the web application space", | |
| "location": { |
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/bash | |
| #If no argument is specified, ask for it and exit | |
| if [[ -z "$@" ]]; | |
| then | |
| echo "An argument is needed to run this script"; | |
| exit | |
| else | |
| arg="$@" | |
| #Basic check to make sure argument number is valid. If not, display error and exit | |
| if [[ $(($(echo $arg | grep -o "\s" | wc --chars) / 2 )) -ne 2 ]]; |