dotfiles/ranger/install.sh

27 lines
806 B
Bash
Raw Normal View History

2020-09-17 10:24:35 +00:00
#!/bin/bash
DIR=$(readlink -f $(dirname $0))
. $DIR/../env.sh
# install ranger
case "$PM" in
apt)
2020-09-22 10:40:26 +00:00
# atool/p7zip-full for archive previewing/extracting etc
sudo apt install -y atool p7zip-full unrar highlight
2020-09-17 10:24:35 +00:00
! which pip3 && $ROOT/python/install.sh
2020-09-17 16:02:24 +00:00
sudo pip3 install ranger-fm ueberzug
2020-09-17 10:24:35 +00:00
;;
pacman)
2020-10-30 18:27:01 +00:00
sudo pacman -S --needed atool
sudo pip install ranger-fm ueberzug p7zip unrar highlight
2020-09-17 10:24:35 +00:00
;;
esac
2020-09-17 10:42:43 +00:00
2020-09-20 09:59:26 +00:00
# linking configuration files
lnsf $DIR/config/commands.py $XDG_CONFIG_HOME/ranger/commands.py
lnsf $DIR/config/rc.conf $XDG_CONFIG_HOME/ranger/rc.conf
lnsf $DIR/config/scope.sh $XDG_CONFIG_HOME/ranger/scope.sh
# install devicons
git clone --depth 1 https://github.com/alexanderjeurissen/ranger_devicons ~/.config/ranger/plugins/ranger_devicons