mirror of
https://github.com/epitaxy/charms.git
synced 2025-12-07 00:15:55 +09:00
12 lines
404 B
Bash
12 lines
404 B
Bash
#!/bin/sh
|
|
|
|
# Faster Ubuntu APT repository server for Korean
|
|
sudo sed -i 's/kr.archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list
|
|
sudo sed -i 's/archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list
|
|
|
|
# essential packages
|
|
sudo apt install -y nnn zsh ncdu htop rsync git vim
|
|
|
|
# Installation of om my zsh
|
|
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|