Este gist tem por objetivo auxiliar na instalação de recursos uteís na pós instalação do ArqchLinux
Link Fractal Scaling Gnome.
Se estiver utilizando o Wayland digite o comando a seguir no seu terminal.
| #!/bin/bash | |
| # bootstrap.sh — setup completo de dev environment num arquivo só | |
| # Uso local: chmod +x bootstrap.sh && ./bootstrap.sh | |
| # Uso via gist: curl -fsSL <url-raw-do-gist> | bash | |
| set -e | |
| echo "==> Instalando Homebrew (se ainda não tiver)..." | |
| if ! command -v brew &> /dev/null; then | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| eval "$(/opt/homebrew/bin/brew shellenv)" |
Este gist tem por objetivo auxiliar na instalação de recursos uteís na pós instalação do ArqchLinux
Link Fractal Scaling Gnome.
Se estiver utilizando o Wayland digite o comando a seguir no seu terminal.
Para Instalar o gerenciador abra o seru powershell em modo administrador. [link] https://chocolatey.org/
Execute 'Get-ExecutionPolicy'. Se retornar 'Restricted, Então execute 'Set-ExecutionPolicy AllSigned' ou 'Set-ExecutionPolicy Bypass -Scope Process'.
| # Configurando um ambiente de desenvolvimento no Windows 10 para utilização do lamp e React. | |
| Este documento tem por objetivo orientar os usuários na instalação de um ambiente de desenvolvimento utilizando o pacote lamp e o React, | |
| aqui vamos ver os comandos para realizar as instalações bem como dicas pra praticas de instalação. | |
| ## Instalando o Package Manager Chocolatey | |
| - Site (https://chocolatey.org/) | |
| - Primeiro verifique se as politicas do seu shell estão como AllSigned, execute comando a seguir o PowerShell como admin (Get-ExecutionPolicy) | |
| - Aplicando as Politicas para instalação do Chocolatey (Set-ExecutionPolicy AllSigned) | |
| - Instalando o Chocolatey (Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))) |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # We use preexec and precmd hook functions for Bash | |
| # If you have anything that's using the Debug Trap or PROMPT_COMMAND | |
| # change it to use preexec or precmd | |
| # See also https://github.com/rcaloras/bash-preexec | |
| # If not running interactively, don't do anything | |
| case $- in |