File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ pacman -Sy --needed --noconfirm \
3535
3636# More Packages
3737pacman -Sy --needed --noconfirm \
38- tmate tmux screen mlocate unace unrar p7zip \
38+ tmate tmux screen mlocate unace unrar \
3939 sharutils uudeview arj cabextract file-roller \
4040 dtc brotli axel gawk detox clang gcc gcc-libs \
4141 flatpak libxcrypt-compat
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ dnf upgrade -y
1919# Install basic packages
2020dnf install -y \
2121 sudo git nano neofetch tmate aria2 rsync rclone \
22- python python2 zip unzip p7zip p7zip-plugins jq \
22+ python python2 zip unzip jq neovim pipx \
2323 unrar python3-pip tmate make cmake clang glibc \
2424 bc ag unace sharutils uudeview arj cabextract \
2525 file-roller dtc brotli axel detox cpio lz4 \
2626 python3-devel xz-devel speedtest-cli zsh \
27- util-linux-user neovim pipx
27+ util-linux-user
2828
2929# Use pipx instead of pip
3030ln -sf /usr/bin/pipx /usr/local/bin/pip
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ PROJECT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
1111
1212# Install some packages
1313if [[ -e " /usr/bin/apt-get" ]]; then
14- sudo apt-get install -y aria2 arj brotli cabextract cmake device-tree-compiler gcc g++ git liblz4-tool liblzma-dev libtinyxml2-dev lz4 mpack openjdk-11-jdk p7zip-full p7zip-rar python3 python3-pip rar sharutils unace unrar unzip uudeview xz-utils zip zlib1g-dev
14+ sudo apt-get install -y aria2 arj brotli cabextract cmake device-tree-compiler gcc g++ git liblz4-tool liblzma-dev libtinyxml2-dev lz4 mpack openjdk-11-jdk python3 python3-pip rar sharutils unace unrar unzip uudeview xz-utils zip zlib1g-dev
1515elif [[ -e " /usr/bin/pacman" ]]; then
16- sudo pacman -Syu --needed --noconfirm android-tools aria2 arj brotli cabextract cmake dtc gcc git lz4 xz tinyxml2 p7zip python-pip unrar sharutils unace uudeview
16+ sudo pacman -Syu --needed --noconfirm android-tools aria2 arj brotli cabextract cmake dtc gcc git lz4 xz tinyxml2 python-pip unrar sharutils unace uudeview
1717elif [[ -e " /usr/bin/dnf" ]]; then
18- sudo dnf install --refresh android-tools aria2 arj brotli cabextract cmake dtc gcc git lz4 xz tinyxml2 p7zip python-pip unrar sharutils unace zip unzip uudeview zip
18+ sudo dnf install --refresh android-tools aria2 arj brotli cabextract cmake dtc gcc git lz4 xz tinyxml2 python-pip unrar sharutils unace zip unzip uudeview zip
1919fi
2020pip3 install backports.lzma docopt protobuf pycrypto zstandard
Original file line number Diff line number Diff line change @@ -13,3 +13,10 @@ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-m
1313git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:- ~/ .oh-my-zsh/ custom} /plugins/zsh-syntax-highlighting
1414
1515sed -i ' s|plugins=(git)|plugins=(git zsh-autosuggestions zsh-syntax-highlighting)|g' ~ /.zshrc
16+
17+ # Install 7zz
18+ URL_7ZZ=" $( curl -sL https://api.github.com/repos/ip7z/7zip/releases/latest | grep -oP ' (?<="browser_download_url": ")[^"]*linux-x64\.tar\.xz' ) "
19+ wget " ${URL_7ZZ} " -O 7zz.tar.xz
20+ tar -xJf 7zz.tar.xz -C /usr/local/bin 7zz 7zzs
21+ rm 7zz.tar.xz
22+ ln -sf /usr/local/bin/7z{z,}
You can’t perform that action at this time.
0 commit comments