What I installed after setup newOS

Tue, November 5, 2024 - 1 min read

Contents

Windows

  • Config:

    1. UAC: disable

    2. Theme:

      Personalisation > Color - Dark

      Personalisation > Background - Solid Color - Black

    3. Date time format

      Control Panel > Region

    4. ssh key to using with git repository (github, gitlab)

      ssh-keygen -t rsa -b 4096 -C "machine_name"
    5. Mail

  • Install apps:

    winget install Git.Git Viber.Viber Microsoft.Skype Docker.DockerDesktop UniKey.UniKey starship clink Google.Chrome 7zip.7zip Cloudflare.cloudflared Notepad++.Notepad++ KeeWeb.KeeWeb DucFabulous.UltraViewer AnyDeskSoftwareGmbH.AnyDesk Microsoft.DotNet.DesktopRuntime.8 virtualbox
    
    iwr -useb https://christitus.com/win | iex
  • Manual install apps:

    1. CCleaner

    2. Office 365

    3. WSL Ubuntu

        # Install Ubuntu 22.04 LTS
        winget install 9PN20MSR04DW
    4. VS code

    5. git

      git config --global user.name "mt-win11-wsl"
      git config --global user.email ""
    6. Font (nerd) and config this font for display icons in Windows Terminal

    7. Ekahau

  • Tweak Window

    iwr -useb https://christitus.com/win | iex
  • Referrences:

Ubuntu

  • Install fish:

    echo "${USER} ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/toantnm
    chmod 0440 /etc/sudoers.d/toantnm
    
    echo 'Install and setup fish...'
    apt-add-repository -y ppa:fish-shell/release-3 \
        && apt-get install -y fish
    
    echo 'Installing oh-my-fish...'
    curl -sSL https://get.oh-my.fish | fish -C 'set argv --noninteractive'
    
    echo 'Setup starship...'
    curl -sS https://starship.rs/install.sh | sudo sh -s -- -y
    echo 'starship init fish | source' >> ~/.config/fish/config.fish
    
    echo 'Set gruvbox-rainbow preset...'
    starship preset gruvbox-rainbow -o ~/.config/starship.toml
    
    echo "Change default terminal of user $(whoami) to fish..."
    sudo chsh -s $(which fish) $(whoami)
    
    echo 'Swiching fish...'
    fish