add fselect and bat
This commit is contained in:
parent
38c367bb34
commit
f7e10d767d
4
Brewfile
4
Brewfile
@ -64,6 +64,10 @@ brew "mas"
|
|||||||
brew "pyenv"
|
brew "pyenv"
|
||||||
# Google CLI https://github.com/jarun/googler
|
# Google CLI https://github.com/jarun/googler
|
||||||
brew "googler"
|
brew "googler"
|
||||||
|
# Install bat https://github.com/sharkdp/bat
|
||||||
|
brew "bat"
|
||||||
|
# https://github.com/jhspetersson/fselect
|
||||||
|
brew "fselect"
|
||||||
|
|
||||||
mas 'Keynote', id: 409183694
|
mas 'Keynote', id: 409183694
|
||||||
mas 'iMovie', id: 408981434
|
mas 'iMovie', id: 408981434
|
||||||
|
13
centos.sh
13
centos.sh
@ -25,8 +25,8 @@ yum -y install pgadmin4
|
|||||||
# Network tools
|
# Network tools
|
||||||
yum -y install net-tools lsof iproute nmap
|
yum -y install net-tools lsof iproute nmap
|
||||||
# Mindmap Editor
|
# Mindmap Editor
|
||||||
yum -y install https://www.xmind.net/xmind/downloads/XMind-ZEN-for-Linux-64bit.rpm
|
yum -y install https://www.xmind.net/xmind/downloads/XMind-ZEN-for-Linux-64bit.rpm
|
||||||
# VideoLAN
|
# VideoLAN
|
||||||
sudo yum -y install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
|
sudo yum -y install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
|
||||||
yum -y install vlc
|
yum -y install vlc
|
||||||
# Install Spectacle
|
# Install Spectacle
|
||||||
@ -169,3 +169,12 @@ cd $HOME
|
|||||||
|
|
||||||
# Install googler https://github.com/jarun/googler#installation
|
# 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
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user