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
{ | |
"breadcrumbs.enabled": true, | |
"cmake.configureOnOpen": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.accessibilitySupport": "off", | |
"editor.autoClosingBrackets": "always", | |
"editor.autoClosingQuotes": "always", | |
"editor.bracketPairColorization.enabled": false, | |
"editor.colorDecorators": true, | |
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint", |
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
# Script para monitorar a conexão com a internet | |
# Exibe notificações quando a internet cai e quando volta | |
# TODO: Adicionar suporte a formatação UTF-8 | |
# Função para exibir notificação do Windows | |
function Show-Notification { | |
param ( | |
[string]$Title, | |
[string]$Message | |
) |