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 | |
| # ============================================================ | |
| # SCRIPT DE PÓS-INSTALAÇÃO PARA LINUX | |
| # ============================================================ | |
| # Autor : vdonoladev | |
| # Versão : 2.0.0 | |
| # Descrição : Instala e configura programas essenciais após | |
| # uma instalação limpa do sistema Linux. | |
| # |
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 | |
| # cacar-duplicatas.sh — Encontra arquivos duplicados por hash SHA-256 (Linux) | |
| # Uso: ./cacar-duplicatas.sh [pasta] [tamanho-minimo-bytes] | |
| # Padrao: ~/ com minimo de 1 KB | |
| # Nenhum arquivo e deletado — apenas listados. | |
| set -eo pipefail | |
| YELLOW='\033[1;33m' | |
| RED='\033[1;31m' |
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 | |
| # ============================================================ | |
| # Instalador do JetBrains Toolbox App — Linux (x86_64) | |
| # Segue o passo a passo oficial da JetBrains | |
| # | |
| # COMO USAR: | |
| # 1. Baixe o .tar.gz em: https://www.jetbrains.com/toolbox-app/ | |
| # 2. Coloque o arquivo na mesma pasta deste script | |
| # 3. Execute: bash installJetbrainsToolbox.sh | |
| # ============================================================ |
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 | |
| # organizar-downloads.sh — Organiza arquivos por tipo de extensao (Linux) | |
| # Uso: ./organizar-downloads.sh [pasta] (padrao: ~/Downloads) | |
| set -eo pipefail | |
| GREEN='\033[1;32m' | |
| CYAN='\033[1;36m' | |
| DIM='\033[0;90m' | |
| BOLD='\033[1m' |
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 | |
| # scanner-espaco.sh — Mostra os maiores arquivos e pastas do disco (Linux) | |
| # Uso: ./scanner-espaco.sh [pasta] [quantidade] (padrao: ~/ 20) | |
| set -eo pipefail | |
| YELLOW='\033[1;33m' | |
| RED='\033[1;31m' | |
| BOLD='\033[1m' | |
| DIM='\033[0;90m' |
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 | |
| # scanner-wifi.sh — Escaneia redes Wi-Fi e sugere o melhor canal (Linux) | |
| # Uso: ./scanner-wifi.sh | |
| # Metodo primario: nmcli (NetworkManager) | |
| # Fallback: iwlist (wireless-tools) | |
| set -eo pipefail | |
| GREEN='\033[1;32m' | |
| YELLOW='\033[1;33m' |
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 | |
| # setup-workspace.sh — Multi-monitor workspace manager para Linux | |
| # Dependencias: wmctrl, xdotool, xrandr | |
| # Uso: | |
| # setup-workspace Menu interativo (carregar ou gravar) | |
| # setup-workspace <perfil> Executa um perfil | |
| # setup-workspace --save <nome> Grava o layout atual como perfil | |
| # setup-workspace --detect Mostra monitores conectados | |
| # setup-workspace --init Cria config editavel | |
| # |
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 E GIT LENS | |
| "git.confirmSync": false, | |
| "git.autofetch": true, | |
| "git.enableSmartCommit": true, | |
| "git.openRepositoryInParentFolders": "always", | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.ai.model": "vscode", | |
| "gitlens.ai.vscode.model": "copilot:gpt-4.1", |
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 | |
| # ============================================ | |
| # .bashrc - Configuração do Bash | |
| # ============================================ | |
| # Autor: vdonoladev | |
| # ~/.bashrc: executado pelo bash(1) para shells não-login | |
| # ============================================ | |
| # Se não estiver rodando interativamente, não fazer nada |
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
| # Informações do usuário que aparecerão nos commits | |
| [user] | |
| name = vdonoladev # Nome do autor dos commits | |
| email = victordonolaf@gmail.com # Email do autor dos commits | |
| # Configurações de inicialização de repositórios | |
| [init] | |
| defaultBranch = main # Nome padrão da branch principal (antes era "master") | |
| # Configurações principais do Git |
NewerOlder