From f7e10d767df40ceeb7de81de141863bd91bf0132 Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Thu, 15 Aug 2019 10:26:43 +0200 Subject: [PATCH] add fselect and bat --- Brewfile | 4 ++++ centos.sh | 13 +++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Brewfile b/Brewfile index c9ac8dc..c030240 100644 --- a/Brewfile +++ b/Brewfile @@ -64,6 +64,10 @@ brew "mas" brew "pyenv" # Google CLI https://github.com/jarun/googler brew "googler" +# Install bat https://github.com/sharkdp/bat +brew "bat" +# https://github.com/jhspetersson/fselect +brew "fselect" mas 'Keynote', id: 409183694 mas 'iMovie', id: 408981434 diff --git a/centos.sh b/centos.sh index 5c08883..9e5d10e 100644 --- a/centos.sh +++ b/centos.sh @@ -25,8 +25,8 @@ yum -y install pgadmin4 # Network tools yum -y install net-tools lsof iproute nmap # Mindmap Editor -yum -y install https://www.xmind.net/xmind/downloads/XMind-ZEN-for-Linux-64bit.rpm -# VideoLAN +yum -y install https://www.xmind.net/xmind/downloads/XMind-ZEN-for-Linux-64bit.rpm +# VideoLAN sudo yum -y install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm yum -y install vlc # Install Spectacle @@ -169,3 +169,12 @@ cd $HOME # Install googler https://github.com/jarun/googler#installation sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.9/googler && sudo chmod +x /usr/local/bin/googler + +# Install BAT (cat with more power) +wget https://github.com/sharkdp/bat/releases/download/v0.11.0/bat-v0.11.0-x86_64-unknown-linux-musl.tar.gz \ + && tar -xzvf bat-v0.11.0-x86_64-unknown-linux-musl.tar.gz \ + && mv bat-v0.11.0-x86_64-unknown-linux-musl/bat /usr/local/bin/ \ + && rm -rf bat-v0.11.0-x86_64-unknown-linux-musl* + +# Install fselect +cargo install fselect