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
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o pipefail | |
| set -o nounset | |
| if ! kdialog -v > /dev/null; then | |
| exit_error "Command not exist: kdialog" | |
| fi |
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: OneDark | |
| # By: Vitor Melo | |
| # Main bg | |
| theme[main_bg]="#282c34" | |
| # Main text color | |
| theme[main_fg]="#abb2bf" | |
| # Title color for boxes |
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
| { | |
| // Editor | |
| "editor.autoClosingBrackets": "always", | |
| "editor.autoIndent": true, | |
| "editor.detectIndentation": false, | |
| "editor.formatOnPaste": false, | |
| "editor.formatOnSave": false, | |
| "editor.glyphMargin": false, | |
| "editor.insertSpaces": true, | |
| "editor.minimap.enabled": false, |
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
| [app] | |
| launch_at_startup = yes | |
| hotkey_run = Alt+Space | |
| [gui] | |
| theme = vitormelo | |
| max_height = 8 | |
| max_results = 30 | |
| [theme/vitormelo] |
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
| class CalcController { | |
| constructor() { | |
| this._operation = [] | |
| this._locale = 'pt-BR' | |
| this._displayCalcEl = document.querySelector('#display') | |
| this._dateEl = document.querySelector('#data') | |
| this._timeEl = document.querySelector('#hora') | |
| this.initialize() | |
| this.initButtonsEvents() |
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
| class CalcController { | |
| constructor() { | |
| this._operation = [] | |
| this._locale = 'pt-BR' | |
| this._displayCalcEl = document.querySelector('#display') | |
| this._dateEl = document.querySelector('#data') | |
| this._timeEl = document.querySelector('#hora') | |
| this.initialize() | |
| this.initButtonsEvents() |
NewerOlder